vote up 3 vote down star
1

Some examples I found that apparently worked with older versions of mvc suggest that there was a length parameter of sorts:

<%=Html.TextBox("test", 50)%>

But that may have been mistakenly setting the value.

How do this work in the current release? Passing in the style doesn't appear to have any effect.

flag

4 Answers

vote up 10 vote down check

For this you have to use HtmlAttributes, but there is a catch: HtmlAttributes and css class .

you can define it like this:

new { Attrubute="Value", AttributeTwo = IntegerValue, @class="className" };

and here is a more realistic example:

new { style="width:50px" };
new { style="width:50px", maxsize = 50 };
new {size=30, @class="required"}

and finally:

<%=Html.TextBox("test", new { style="width:50px" })%>
link|flag
vote up 3 vote down

Something like this should work:

<%=Html.TextBox("test", new { style="width:50px" })%>

Or better:

<%=Html.TextBox("test")%>

<style type="text/css">
    input[type="text"] { width:50px; }     
</style>
link|flag
Wouldn't #test {width: 50px;} work just as well? – Todd Smith Nov 28 '08 at 1:42
vote up 1 vote down

Don't use the length parameter as it will not work with all browsers. The best way is to set a style on the input tag.

<input style="width:100px" />
link|flag
vote up 0 vote down

new { style="width:50px", maxsize = 50 };

should be

new { style="width:50px", maxlength = 50 };

link|flag

Your Answer

Get an OpenID
or

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