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; }
}