Hi..
Ques : How can we create MVC views faster and make them strong typed by using HTML helper?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manikavelu VelayuthamPosted Feb 23, 2012, 1:29 AM
2. You should know the HTML tags and the CSS styles to design the view.
Above two will help you to design the view faster.
Simple Example to Load DropDownlist
@foreach (var al in Model)
{
if (string.Compare(al.cCode, "ANY", true) != 0)
{
}
}