将自定义成员资格添加到表单
我有一个使用 asp.net 成员资格表的网站(ASP 3.5 网站)。 我将使用 Excel 工作表定期将用户添加到成员资格表中,并且我想通过表单上传所有 Excel 信息。 我使用了一个小表单应用程序来处理 Excel 工作表,现在准备将信息添加到成员资格表中。
有没有办法调用会员资格表的会员资格类别,并在处理 Excel 工作表时手动添加用户?
I have a site that uses the asp.net membership tables (ASP 3.5 site). I am going to use an excel sheet to periodically add users to the membership tables and I want to upload all the excel information via a form. I used a little form app to process the excel sheet and am now ready to add the information to the membership tables.
Is there a way to invoke the membership class for the membership tables and add a user manually from the from as the excel sheet is processed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Membership.CreateUser()
这是 链接
You can use Membership.CreateUser()
Here's the link