how to set the display property inline
ASP.NET
4
Posts
2
Posters
0
Views
1
Watching
-
in vb i hv done following....... trWorkAssigned.Style("Display") = "Inline" tdUpdtInvCoid.Style("Display") = "none" i want to use tht coding in c# how i will use tht?
Replace () with [].
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
Replace () with [].
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
trWorkAssigned.Style.Add("Display", "Inline"); tdUpdtInvCoid.Style.Add("Display", "none"); i hv use like this... is tht right?
That works too.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.