asp:createuserwizard 和 c#
是否可以有 2 个 createuserwizard 控件并动态调用它们?我的情况是这样的: 1. Web 应用程序有两种类型的用户 - “客户端”和“供应商”。 2. 他们各自有自己单独的注册流程。 3. 在主页上我想要两个不同的按钮 - 按钮 1 是“您是客户吗”,按钮 2 是“您是供应商吗” 4. 按钮1将为客户端加载createuserwizard 5. 按钮 2 将加载 Vendor 的 createuserwizard
就是这样。我将如何实现这个目标?
Is it possible to have 2 createuserwizard controls and call them dynamically? My situation is this:
1. A web application has two types of users - "Client" and "Vendor".
2. They will each have their own separate registration process.
3. On the home page I want two different buttons - Button 1 is "Are you a Client", Button 2 is "Are you a Vendor"
4. Button 1 will load createuserwizard for Client
5. Button 2 will load createuserwizard for Vendor
That's it. How would I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是有 2 个单独的注册页面,例如 VendorRegistration.aspx 和 ClientRegistration.aspx。
您还可以将控件设置为visible=false,然后设置您希望在按钮单击事件中可见的控件。
The easiest way would be to have 2 separate registration page like VendorRegistration.aspx and ClientRegistration.aspx.
You can also set the controls to visible=false and then set the one you want visible in the button click event.