本文介绍了如何在ASP.NET MVC3 Razor中创建只读文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用Razor视图引擎在ASP.NET MVC3中创建一个只读文本框?
How do I create a readonly textbox in ASP.NET MVC3 with the Razor view engine?
是否可以使用HTMLHelper方法?
Is there an HTMLHelper method available to do that?
类似以下内容?
@Html.ReadOnlyTextBoxFor(m => m.userCode)
推荐答案
@Html.TextBoxFor(m => m.userCode, new { @readonly="readonly" })
欢迎您为此创建HTML帮助器,但这只是与其他属性一样的HTML属性.您是否会为具有其他属性的文本框创建HTML帮助器?
You are welcome to make an HTML Helper for this, but this is simply just an HTML attribute like any other. Would you make an HTML Helper for a text box that has other attributes?
这篇关于如何在ASP.NET MVC3 Razor中创建只读文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!