ASP.Net MVC 应用程序中的编辑文本框不起作用?
由于目前未知的原因,在处理使用“编辑”模板的自动脚手架创建的编辑的强类型部分视图中,拒绝在文本框中显示任何数据。
但是,测试标题文本字符串显示相关内容。
<% using (Html.BeginForm()) {
try
{
%>
<fieldset>
<legend>Fields</legend>
<p>
<%
string titletext = Model.Title.ToString();
%>
<%= titletext %>
<label for="Title">Title:</label>
<%= Html.TextBox("Title", Model.Title) %>
<%= Html.ValidationMessage("Title", "*") %>
</p>
For reasons currently unknown, in a strongly typed partial view that handles editing which was created using the auto-scaffold for an "Edit" template, refuses to display any data in the textbox.
But, the test titletext string displays the relevent content.
<% using (Html.BeginForm()) {
try
{
%>
<fieldset>
<legend>Fields</legend>
<p>
<%
string titletext = Model.Title.ToString();
%>
<%= titletext %>
<label for="Title">Title:</label>
<%= Html.TextBox("Title", Model.Title) %>
<%= Html.ValidationMessage("Title", "*") %>
</p>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您放入文本框中的文本不包含 html 标签 - 尝试对您的文本进行 html.encode。
在 MVC 2 中,这是自动处理的。
编辑:
Model.Title 属性是否与页面级标题变量冲突?
Make sure the text you put into the textbox doesn't contain html tags - try to html.encode your text.
In MVC 2 this is handled automagically.
Edit:
Isn't the Model.Title property in conflict with Page-level Title variable?