0

how do I add a class attribute if I already have an ID attribute? The compiler keeps screaming ratial epitets at me...

Html.TextBox("", "", new {id = nodes["id"].Value class = ?????}))

2 Answers 2

2
Html.TextBoxFor(m => m.Thing, new {@class="myclass"})

The @ is needed, probably because class is a reserved word in C#

Sign up to request clarification or add additional context in comments.

Comments

1

If you capitalise the c in class it will work

Html.TextBoxFor(m => m.Prop, new {Class="class"})

As Mystere says, this is because class is a reserved word.

When your aspx page gets transformed into html the attribute will be lowercased

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.