Problem with Membership.GetUser()
-
Hi there, I use the following codesnipet to retrieve the user information: MembershipUser user = Membership.GetUser("username"); but I get this error: Specified cast is not valid. any idea?
-
Hi there, I use the following codesnipet to retrieve the user information: MembershipUser user = Membership.GetUser("username"); but I get this error: Specified cast is not valid. any idea?
-
Hi there, I use the following codesnipet to retrieve the user information: MembershipUser user = Membership.GetUser("username"); but I get this error: Specified cast is not valid. any idea?
MembershipUser user = Membership.GetUser("username"); in this the getuser is a method i think so u have to cast like the below code //CheckBox chkBxSelect = (CheckBox)e.Row.Cells[1].FindControl("chkselect");
Padmanabhan