
I have to create a jsp page with 40 labels and 40 textfields whereas 20 labels and corresponding textfield should be in 1st column and the remaining should be in 2nd column....how can i seperate the two columns using a line....can u help me????

Hi Friend,
You can use the following code:
<html> <table cellspacing="5" border="0" cellpadding="0"> <tr valign="top" align="left"> <td width="300"> <p><label>A:</label><input type="text"></p> <p><label>B:</label><input type="text"></p> <p><label>C:</label><input type="text"></p> <p><label>D:</label><input type="text"></p> <p><label>E:</label><input type="text"></p> </td> <td width="1" bgcolor="#00FFFF"><BR></td> <td width="300" valign="top" align="right"> <p><label>F:</label><input type="text"></p> <p><label>G:</label><input type="text"></p> <p><label>H:</label><input type="text"></p> <p><label>I:</label><input type="text"></p> <p><label>J:</label><input type="text"></p> </td> </tr> </table> </html>
Hope that it will be helpful for you.
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.