大家做了很多文本框查询并且赋值回来
1.先是把数据对象查询结果后台,然后把对象赋值给对象在赋值回来前台页面
2.使用@html helerper 数据查询,使用 ViewContext.RouteData.GetRequiredString("Controller") 在路由中获取参,使用get方式提交,然后数据回自动赋值到页面
a.@using (Html.BeginForm(null, ViewContext.RouteData.GetRequiredString("Controller"), null, FormMethod.Get))
{@Html.TextBox("CustomerName", null, new { @class = "form-control" })}
b.@using (Html.BeginForm(null, ViewContext.RouteData.GetRequiredString("Controller"), new RouteValueDictionary { { "id", "" } }, FormMethod.Get))
{@Html.TextBox("CustomerName", null, new { @class = "form-control" })}
推荐大家使用第二种方法查询数据
新手写博客只为日常开发中遇到的开发技术累计,勿喷~