public ActionResult OpenForm(){ return VIEw("Index");}
我的视图如下[Index.csHTML]
@model BusinessProcess.Models.HelloworldTO@using (HTML.BeginForm()){ @HTML.ValIDationSummary(true) @HTML.displaynameFor(model => model.Response_Borrower) @HTML.EditorFor(model => model.Response_Borrower)}
现在问题是我对“编辑”和“视图”使用相同的视图.现在在某些情况下我希望用户只“查看”数据并将@ HTML.EditorFor转换为@ HTML.displayFor.有没有办法在不创建另一个视图的情况下执行此 *** 作?
解决方法 模型:public class HelloworldTO(){ public bool Edit {get; set;}}
视图:
@model BusinessProcess.Models.HelloworldTO@if (Model.Edit){ @using (HTML.BeginForm()) { @HTML.ValIDationSummary(true) @HTML.displaynameFor(model => model.Response_Borrower) @HTML.EditorFor(model => model.Response_Borrower) }}else{ @HTML.displayFor(model => model.Response_Borrower) }
调节器
public ActionResult OpenForm(){ HelloworldTO model = new HelloworldTO (); model.Edit = /*certain circumstances*/; return VIEw("Index",model);}总结
以上是内存溢出为你收集整理的c# – 在ASP.net MVC中使用相同的视图进行编辑和查看全部内容,希望文章能够帮你解决c# – 在ASP.net MVC中使用相同的视图进行编辑和查看所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)