Posts: 30
Name: Kulrom
Location: Republic of Macedonia
|
Quote:
Originally Posted by joduee
my site's mail form's action is set to other site. How to reset on my domain page. I don't idea.
|
I assume it looks like this currently:
Code:
<form action="http://www.anothersite.com/emailsender.asp" method="post" id="myform">
{.....}
</form>
Well just edit the action attribute making it to points to your site e.g.
Code:
<form action="http://www.yoursite.com/emailsender.asp" method="post" id="myform">
{.....}
</form>
Now create a new asp page and name it emailsender.asp.
Add the code suggested by itHighway and you should be fine.
|