1

I have a issue. I renamed Database_A to Database_B. After that I can't use this

user = Membership.GetUser(strUserName)

to get user information because this refer to old database. I see triggers also refer to old DB.

How can I correct this?

Thanks!

DC8 United
  • 29
  • 1

1 Answers1

0

You need to update the connectionString in your web.config that points to your membership database so it refers to "Database_B".

Steve
  • 506
  • 6
  • 16