How to Design TextBox Control in Mvc3
====================================
@model MvcApplication1.Models.Class1
<h2>@ViewBag.Message</h2>
@{
Response.Write(ViewBag.Test);
}
<div>
@Html.TextBoxFor(m => m.CityName, new { @style = "width:500px;color:red;", @id = "txtcity" })
</div>