If i have a html helper like so:
Name:<br />
<%=Html.TextBox("txtName",20) %><br />
How do i apply a css class to it? Do i have to wrap it in a span? Or do i need to somehow utilize the HtmlAttributes property of the helper?
|
2
|
If i have a html helper like so:
How do i apply a css class to it? Do i have to wrap it in a span? Or do i need to somehow utilize the HtmlAttributes property of the helper?
|
||
|
|
|
|
You can pass it into the TextBox call as a parameter.
This line will create a text box with the value 20 and assign the class attribute with the value hello. I put the @ character in front of the class, because class is a reserved keyword. If you want to add other attributes, just separate the key/value pairs with commas. |
||
|
|
|
|
hmmmm, that just took out all my code. |
||
|
|
|
|
<%=Html.TextBox("txtName","20", new { @class = "test"}) %> Is it that much more work? |
||
|
|
|
|
How does this look in VB.net? <%=Html.CheckBox("Learning", item.Learning, New With {.enabled = False})%> |
||
|
|
|
|
@Jonathan - ASP.NET MVC doesn't tie you to the aspx view engine. That is just what works out of the box. There are plenty of other view engines you can use until you find the one that is comfortable and will get you away from the clunky <% %>. The one I am mostly excited about is Spark. Scott did a post about it, which is how I learned about it. The way the html and code come together seamlessly is very nice. The others are nVelocity, Brail, and nHaml. All of these have been implemented in the MvCContrib project. |
||
|
|
|
|
@Dan - I feel the same way. I don't use the Html Helpers either. I prefer coding out the html and so do my designers. I like having the full control over my markup compared to using the Html helpers in MVC or using the server side controls in ASP.NET Web Forms. You just can't beat it when it comes to generating fully standard compliant sites that also have to be 508 compliant. |
||
|
|
|
|
The HTML Helpers are one of several reasons why we are not adopting MVC. The XML Markup style controls of WebForms work much better when you are working with large teams complete with designers. |
||
|
|
|
|
I did some research and came across this article that seems to have a solution to your question. Ajax Control Toolkit with ASP.NET MVC# source: jimzimmerman ARTICLE LINK http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=330 QUOTE
|
||
|
|
|
|
Thanks guys I suspected that would be the answer. I'm not sure I'm sold on these helpers, makes the HTML too code intensive. There is something to be said for clean HTML that can be understood my everyone including UI designers. |
||
|
|
|
|
use the htmlAttributes parameter with anonymous type, like tihs:
|
||
|
|