Click here to Skip to main content
16,004,806 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i want to design my web form with table control.

so which control(either standard/HTML) can i select in design view from toolbox.
and i have 3 rows, among them 2 rows consists two columns and 3 rd row contains only one column (it shoud combine (colspan) two columns )
Posted
Comments
Karthik_Mahalingam 7-Jan-14 1:02am    
HTML contorl is better.
Member 10263519 7-Jan-14 3:54am    
thanq

hi you can try following simple table structure

HTML
<table>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
<tr><td colspan="2"></td></tr>
</table>
 
Share this answer
 
Comments
Karthik_Mahalingam 7-Jan-14 4:02am    
ya, good.
Hi,

If you want to create your table in design view,
then you can use Standard controls from the toolbox.

Regards,
Shree M.
 
Share this answer
 
You may use the table control in the asp.net toolbox, check this demo: how-to-use-table-control-in-aspnet[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900