It's not a web server configuration problem.
The problem has to do with your invalid HTML.
For example, look at line 142 in your above posted code.
You have the following:
Notice how you have value=<%=vempna me%>
This is invalid. All values should have quotes around them. Change your code to the following:
And it will work properly.
If you ensure that your HTML is valid you will have less problems.
~Cheers~
-Frinny
The problem has to do with your invalid HTML.
For example, look at line 142 in your above posted code.
You have the following:
Code:
<td align='left'><input type="text" style="width:300px" name="vempname" value=<%=vempname%>></td>
This is invalid. All values should have quotes around them. Change your code to the following:
Code:
<td align='left'><input type="text" style="width:300px" name="vempname" value="<%=vempname%>"></td>
If you ensure that your HTML is valid you will have less problems.
~Cheers~
-Frinny
Comment