HTML Table in asp.net
ASP.NET
4
Posts
3
Posters
0
Views
1
Watching
-
Dear All, i'm creating HTML table dynamically in ASP.NET using C#, i created that... problem is i want to use colspan in that... how to do that....? help!!!
-
Dear All, i'm creating HTML table dynamically in ASP.NET using C#, i created that... problem is i want to use colspan in that... how to do that....? help!!!
-
Dear All, i'm creating HTML table dynamically in ASP.NET using C#, i created that... problem is i want to use colspan in that... how to do that....? help!!!
-
There is a colspan property on the HtmlTableCell object. HtmlTableCell td = new HtmlTableCell(); td.ColSpan = 2; Hope this helps.
Ya it works, thanks