vote up 1 vote down star

I need to change the height of a div container(CSS Property Height) from ASP.NET code (VB).

How can I do that?

Thanks

flag

78% accept rate

6 Answers

vote up 7 vote down check

C#, because I don't want to typo the VB syntax.

Markup:

<div runat="server" id="divControl">...</div>

Class of the Page:

protected System.Web.UI.HtmlControls.HtmlGenericControl divControl;

OnLoad/Other function:

divControl.Styles.Add("height", number / anotherNumer);
link|flag
control you mean the ID of the div? – David Bonnici Dec 31 '08 at 14:14
Thanks anyway, but i dont knwo c# syntax.... – David Bonnici Dec 31 '08 at 14:22
What's C# again :-) – Peanut Dec 31 '08 at 14:24
@David, even if you don't write in C#, it would probably be helpful to at least learn how to read and translate it. I think you'll find that many examples for new stuff from Microsoft will come out first in C#. – tvanfosson Dec 31 '08 at 14:27
@tvanfosson - Agreed, it's an excellent skill to have – LFSR Consulting Dec 31 '08 at 18:47
show 1 more comment
vote up 0 vote down

Check this out : http://stackoverflow.com/questions/1501577/change-css-dynamically

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

VB Version:

Class:

Protected divControl As System.Web.UI.HtmlControls.HtmlGenericControl

OnLoad/Other function:

divControl.Style("height") = "200px"

I've never tried the Add method with the styles. What if the height already exists on the DIV?

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

As a NOT TO DO - Another way would be to use:

divControl.Attributes.Add("style", "height: number");

But don't use this as its messy and the answer by AviewAnew is the correct way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.