How to dynamically bind data to label in Asp.net MVC. I have table where i need to display all compnay name dayanamically. I did create a Model for compnay name.

code in model look like this,

public class CompnayName
 {
     public string compnayName { get; set; }
     public string address { get; set; }

 }
link|improve this question

what are you using as data source? – RoBYCoNTe Feb 4 '11 at 14:54
I am using SQL as data source. – Mvcdev Feb 4 '11 at 15:11
feedback

1 Answer

up vote 0 down vote accepted

Please first correct spelling of the class name ;-)

Your asp page needs to inherit from your model:
Inherits="System.Web.Mvc.ViewPage"

Then uses LabeFor:
...<%= Html.LabelFor(m => Model.companyName)%>

That should do the trick.

link|improve this answer
Inherits="System.Web.Mvc.ViewPage<namespace.CompanyName>" – Nomadefv Feb 4 '11 at 15:18
Thanks for your help... It's working now.. – Mvcdev Feb 4 '11 at 15:27
you gotta understand, it's not a company, it's a comp-Nay, dog! – MrBoJangles Feb 4 '11 at 20:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.