私はASP.NET MVCを初めて使い、ビューにデータを表示しようとしていますが、データの代わりに指示が表示されます。ビューには実際の値の代わりにが表示されます
My CustomerModelクラス。
以下Customercontroller
public class CustomerController : Controller
{
public ActionResult Index(CustomerModel Customerobj)
{
Customerobj.Id = 1;
Customerobj.FirstName = "Qaiser";
Customerobj.LastName = "Abbas";
Customerobj.Nic = "61101";
return View(Customerobj);
}
}
カスタマービューがある
@model SmartMinds.Models.CustomerModel
<div>
The Id of Customer is : <%=Id%>
The First Name of Customer is:<%CustomerModel.FirstName%>
The Last Name of Customer is:<%CustomerModel.LastName%>
The Nic of Customer is:<%CustomerModel.Nic%>
</div>
出力され
The Id of Customer is : <%=Id%>
The First Name of Customer is:<%CustomerModel.FirstName%>
The Last Name of Customer is:<%CustomerModel.LastName%>
The Nic of Customer is:<%CustomerModel.Nic%>
それが実際の値が表示されない
あなたのコードはインデントする必要があります。コードを選択し、 '{}'ボタンを押します。 – cst1992