Hello
How would I resolve an issue where my SMTP code is fine but the contact.aspx page goes nowhere?
Apparently, this is a sever 301 error, and I am hoping to divert the user from contact.aspx to thankyou.aspx.
This is the code I have (but not yet tried):
<configuration>
<location path="contact.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.dimadayoub.net/contact" httpResponseStatus="Permanent" />
</system.webServer>
</location>
<location path="thankyou.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.dimadayoub.net/thankyou" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>
Does that look as if it could work?
Thanks< ...
Go to the complete details ...