text box inside table<td>?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nirmalsingh
    New Member
    • Sep 2006
    • 218

    text box inside table<td>?

    how to place controls inside table? i wrote code like


    <td align=left valign=middle class=formlefth eading><inptut type=text value= " + hai" ></td>

    but it does'nt works
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Originally posted by nirmalsingh
    how to place controls inside table? i wrote code like

    [HTML]
    <td align=left valign=middle class=formlefth eading><inptut type=text value= " + hai" ></td>[/HTML]

    but it does'nt works
    First of all, you need a form. Have you defined that above this code?

    There is a spelling mistake. inptut should be input.
    [HTML]<td align=left valign=middle class=formlefth eading><input type=text value= " + hai" ></td>
    [/HTML]

    Comment

    Working...