Remark :Label TextBox Password TextArea
1 2 3 4 5 6 |
@Html.Label("username", "User Name"); @Html.TextBox("username", "Turorials Team", new { style ="background:yello", @class="class"}) <br/> @Html.Password("password")<br/><br /> @Html.TextArea("abount","Enter some text here", 3,20, null)<br/> |