如何在第一次访问视图时显示必填字段?
我正在使用 MVC 2.0,我想知道如何在第一次访问的视图上显示我所需的字段。
例如..我有一个可以注册一个人的页面,并且我还有我的字段:
- 姓名;
- 年龄;
- 城市;
- 国家;
- 电话;
但是,仅需要“姓名”和“电话”字段。我已经在服务器端进行了验证,但是,我希望当有人加载页面时,页面显示所需的字段。
例如: 姓名 [Put_text_here___________] *
我有我的页面:
<%= Html.TextBoxFor(model => model.soliInscricaoImobiliaria})%>
<%= Html.ValidationMessageFor(model => model.Name, "*") %>
我该怎么做?
此致, 担
I am using MVC 2.0 and I wonder know how to show my required fields on the view on first acess.
For example.. I have a page that I can register a person and also I have my fields:
- Name;
- Age;
- City;
- Country;
- Phone;
But, just "Name" and "Phone" fields are requireds. I alread have the validation in my server side, but, I want that when somebody load the page, the page shows the required fields.
For example:
Name [Put_text_here___________] *
I have on my pages:
<%= Html.TextBoxFor(model => model.soliInscricaoImobiliaria})%>
<%= Html.ValidationMessageFor(model => model.Name, "*") %>
How do I do that?
Best regards,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是超级用户友好,我会考虑将其放入
@helper
块中。但缺少简单地将星号硬编码到表单中...更多信息:
http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-1-introduction.html
http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html
http:// /bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-4-custom-object-templates.html
This is not super user-friendly, and I'd look at putting it into a
@helper
block. But short of simply hard-coding an asterisk into the form...More information here:
http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-1-introduction.html
http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html
http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-4-custom-object-templates.html