本文介绍了只读不工作。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Readonly无法正常工作。

我在这样的MVC应用程序中编写了只读代码,但只读不起作用。请给出解决方案

Readonly not working .
I wrote code for read only in MVC application like this but read only not working. please give the solution

@Html.DropDownListFor(model => model.DocumentType, new SelectList(Model.DocumentInfo, "DocumentType", "DocumentType"), new { @readonly = "readonly" }))

推荐答案

这篇关于只读不工作。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 21:01