i can get the user name as : User.Identity.Name. How can I user\'s email address because it must be stored (there is a textbox for it in the registration form)?
User.Identity.Name
or if the information is coming from outside the page you can do like this.
string userName = Request.QueryString["username"]; TextBoxUserID.Text = Membership.GetUser(userName).Email;