@using(Html.BeginForm())
{
<fieldset>
<p>
<label for="Title">Referans Adı</label>
<p>
@Html.TextBoxFor(Model=> Model.Name)
</p>
How can the model’s data be used in javascript like used in the html form?
Can javascript use the model data like used in html from?(like Model.Name)
Yes. Razor can parse the following just fine: