views:

56

answers:

2

Hello All,

Please can anyone tell me all the properties or methods which I can use while using the following method of HTML syntax

<%= Html.TextBox("email", "", new { maxlength = 200 })%> <%= Html.ValidationMessage("email", "*")%>

i want the link where i can get the complete synatx of the above . please help me

Thanks Ritz

A: 

You can use pretty much anything that prints something out, even methods which return numbers, strings, etc.

Jimmeh
A: 

MSDN is always your best bet for things like this.

Textbox

Validation message

Here is one for the whole Html namespace: Html namespace

theouteredge