1
Answer

ASP.NET membership provider export and import

Sri

Sri

14y
2.2k
1
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
Javeed M Shaikh

Javeed M Shaikh

NA 7.8k 69.7k 11y
can you try to set some hard coded value like this:

timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
darma teja

darma teja

NA 493 194.2k 11y
Hi,

gridView.Rows[1].Cells[1].Value= "text here";

Darma