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"> </td>
</tr>
<tr>
<td class="c1">Phone: *</td>
<td class="c2"><input id="txtPhone" type="text" /> ...
Go to the complete details ...