Posted on: 2/25/2014 5:31:06 PM | Views : 523

Hello all,
I have 2 sites, one running on Linux (Site A) and other on Windows (Site B), both running on localhost.
There is a contact page on Site A named contact.html on which when form is submitted then a page is called in Site B named senddata.aspx
I am sending form data from contact.html to senddata.aspx via a javascript and get methos like this.
Contact.html page
<head> <script type="text/javascript" src="contact.js"></script> </head> <body> <table> <tr> <td class="c1">Name: *</td> <td class="c2"><input id="txtName" type="text" /></td> <td class="c3">&nbsp;</td> </tr> <tr> <td class="c1">Phone: *</td> <td class="c2"><input id="txtPhone" type="text" /> ...

Go to the complete details ...