import users to ASP.NET membership from a file

后端 未结 3 1980
清歌不尽
清歌不尽 2021-01-06 20:46

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

3条回答
  •  春和景丽
    2021-01-06 21:15

    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)

提交回复
热议问题