I have a site using ASP.NET membership. I also have an excel file with about 60 user records. How can I import the records into the membership database, without having to
Choice 1
If you're lucky, Excel has a way to export the rows directly to your database (this depends on which Database you're using)
Choice 2
Write a program that iterates over each row in the excel table and inserts it manually into your database (again, process depends on which one)