ASP.NET membership provider export and import
My application uses ASP.NET membership provider. It connects to an Oracle database where it hosts the membership schema.
I have a need to move existing production users on orable db1 to oracle db 2 which will host the same aspnet membership schema. How would I achieve this?
What would be a better solution? Database or C# code? Or, are there any tools that already do this job of exporting asp.net membership schema and data to the new database?
Answers (1)
0
can you try to set some hard coded value like this:
timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
Hi,
gridView.Rows[1].Cells[1].Value= "text here";
Darma