I need to change the height of a div container(CSS Property Height) from ASP.NET code (VB).
How can I do that?
Thanks
|
|
|
|
|
|
|
C#, because I don't want to typo the VB syntax. Markup:
Class of the Page:
OnLoad/Other function:
|
||||||||||
|
|
|
Check this out : http://stackoverflow.com/questions/1501577/change-css-dynamically |
||
|
|
|
|
I find that code gets messy fast when C# code is used to modify CSS values. Perhaps a better approach is for your code to dynamically set the class attribute on the div tag and then store any specific CSS settings in the style sheet. That might not work for your situation, but its a decent default position if you need to change the style on the fly in server side code. |
||
|
|
|
|
VB Version: Class:
OnLoad/Other function:
I've never tried the Add method with the styles. What if the height already exists on the DIV? |
||
|
|
|
|
If your div is an ASP.NET control with runat="server" then AviewAnew's answer should do it. If it's just an HTML div, then you'd probably want to use JavaScript. Can you add the actual div tag to your question? |
||
|
|
|
|
As a NOT TO DO - Another way would be to use:
But don't use this as its messy and the answer by AviewAnew is the correct way. |
||
|
|