For example, you have following model in your MVC application:
public class Employee
{
public string EmployeeName
public int EmployeeNumber
}
You have bound this model to your MVC view (Razor/ Html), and there may be a case when you need to access "EmployeeName" in the Javascript from that view.
You can access value of "EmployeeName" property of your model by following way:
<script type="text/javascript">
function showEmployeeName()
{
alert('@(Model.EmployeeName)');
}
</script>
public class Employee
{
public string EmployeeName
public int EmployeeNumber
}
You have bound this model to your MVC view (Razor/ Html), and there may be a case when you need to access "EmployeeName" in the Javascript from that view.
You can access value of "EmployeeName" property of your model by following way:
<script type="text/javascript">
function showEmployeeName()
{
alert('@(Model.EmployeeName)');
}
</script>