views:

46

answers:

1

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?

+1  A: 

You can use Membership.CreateUser()

Here's the link

Jeremy