some data is lost when page submitted in list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #16
    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:

    Code:
    <td align='left'><input type="text" style="width:300px" name="vempname" value=<%=vempname%>></td>
    Notice how you have value=<%=vempna me%>
    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>
    And it will work properly.

    If you ensure that your HTML is valid you will have less problems.

    ~Cheers~

    -Frinny

    Comment

    • vikas251074
      New Member
      • Dec 2007
      • 198

      #17
      Great !!!!!!!!!!!!!!! !!!!!!!!!!!!!!! !!!!!!!!

      Tusi Great Ho Sir ji. !!!!!!!!!!!!!!! !!!!!!!!!!!!!!! !!!!

      Wonderful solution

      Headache is cured


      Thank you

      Comment

      • jhardman
        Recognized Expert Specialist
        • Jan 2007
        • 3405

        #18
        This is a good example of why validating your code is a good idea.

        Jared

        Comment

        Working...