如何在第一次访问视图时显示必填字段?

发布于 2024-10-04 20:04:32 字数 538 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逐鹿 2024-10-11 20:04:32

这不是超级用户友好,我会考虑将其放入 @helper 块中。但缺少简单地将星号硬编码到表单中...

@(ViewData.ModelMetadata.Properties.First(m => m.PropertyName == "Name").IsRequired ? "*" : "")

更多信息:

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...

@(ViewData.ModelMetadata.Properties.First(m => m.PropertyName == "Name").IsRequired ? "*" : "")

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文