Thanks a lot for your help but I need to return the value that is stored in @UserName parameter and when I try, it returns me the name of the parameter not its value

PD: I am using:
SqlParameter userParam = new SqlParameter("@UserName", CreateUserWizard1.UserName);
Response.Write(userParam);
Whats wrong with that?