如何自定义silverlight业务应用程序的注册页面?

发布于 2024-09-25 21:27:53 字数 90 浏览 0 评论 0原文

当您使用 VS2010 创建 silverlight 4 业务应用程序时,默认情况下您将获得登录和注册页面。我需要自定义注册页面,添加更多字段。我该怎么做?提前致谢。

When you create a silverlight 4 business application, using VS2010, by default you will get a login and registration page. I need to customize the registration page, to add more fields. How do I do that? Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南烟 2024-10-02 21:27:53

生成的 Web 项目有一个名为 BusinessApplication.Web.RegistrationData 的类,您可以修改该类以包含更多字段。然后在 Silverlight 应用程序的客户端生成相同的类,并且 RegistrationForm 上使用的 DataForm 控件将自动检测 RegistrationData 类中的字段。

The Web project generated has a class called BusinessApplication.Web.RegistrationData, which you can modify to include more fields. This same class is then generated on the client side for the Silverlight App, and the DataForm control used on the RegistrationForm will automatically detect the fields in the RegistrationData class.

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