track vts
2 posts
Registered:
17 Nov 2009
17 Nov 2009
Link to this post
heloo
as soon i click on continue button administrator login changes to newly created user
plz give me solution to prevent it plz help me
public partial class CreateUser : System.Web.UI.Page
{
TextBox username;
protected void Page_Load(object sender, EventArgs e)
{
Class1.OpenConn();
string[] rolesArray;
if(!(IsPostBack))
{
rolesArray = Roles.GetAllRoles();
rdButtonListRoles.DataSource = rolesArray;
rdButtonListRoles.DataBind();
}
if(IsPostBack)
{
Class1 cs = new Class1();
username = (TextBox)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("UserName");
ProfileCommon newProf;
newProf = Profile.GetProfile(username.Text);
TextBox MobileNo, name, Sirname;
name = (TextBox)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("txtname");
Sirname = (TextBox)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("txtSirname");
MobileNo = (TextBox)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("MobileNo");
newProf.Name = name.Text;
newProf.Sirname = Sirname.Text;
newProf.MobileNo = MobileNo.Text;
newProf.Save();
RoleDiv.Visible = false;
}
}
protected void ContinueButton_Click(object sender, EventArgs e)
{
for (int i = 0; i < rdButtonListRoles.Items.Count; i++)
{
if (rdButtonListRoles.Items[i].Selected == true)
{
if (!Roles.IsUserInRole(username.Text, rdButtonListRoles.Items[i].Text))
{
Roles.AddUserToRole(username.Text, rdButtonListRoles.Items[i].Text.ToString());
}
}
else
{
if (Roles.IsUserInRole(username.Text, rdButtonListRoles.Items[i].Text))
{
Roles.RemoveUserFromRole(username.Text, rdButtonListRoles.Items[i].Text.ToString());
}
}
}
Response.Redirect("ManageUser.aspx");
}
protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
}
}