1

我正在使用c#,在vs 2008,框架3.5中,我需要保存用户名,当用户登录时,它会显示他/她的名字和姓氏,此时可以保存它,这就是我想要的但需要向用户显示他/她的用户名而不是他/她的名字和姓氏。这是我的代码,在此先感谢。

//code in the login
ClPersona login = new ClPersona();
bool isAuthenticated = login.sqlLogin1((txtUsuario.Text), (txtPassword.Text));
if (isAuthenticated)
{
Session["sesionicontrol"] = login.NombreUsuario;
Response.Redirect("../MENU/menu1.aspx");
}

//code in the form where shows the username but I want the first and last name

public partial class menu2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
lblNombreUsuario.Text = (string)Session["sesionicontrol"]; 
if (!IsPostBack)


//ClPersona class

public Boolean sqlLogin1(string nombreUsuario, string password)
{
string stSql = "select * from usuarios where usuario='" + nombreUsuario + "' and
pass='" + password + "'and id_rol='1'";
Bd miBd = new Bd();
DataTable dt = miBd.sqlSelect(stSql);
DataSet ds = new DataSet();
ds.Tables.Add(dt);
//return ds;
if (dt.Rows.Count > 0)
{
return true;
}
else
{
return false;
}
}
4

1 回答 1

0

修改两段

第一的

if (isAuthenticated)
{
Session["YouObject"] = login;//<--

Session["sesionicontrol"] = login.NombreUsuario;
Response.Redirect("../MENU/menu1.aspx");
} 

第二

protected void Page_Load(object sender, EventArgs e)
{
   if(Session["YouObject"] != null)
   { 
     ClPersona obj = (ClPersona )Session["YouObject"];
     lblNombreUsuario.Text = string.Format("{0}-{1}", obj.FirstName, obj.LastName ) 


   }

      lblNombreUsuario.Text = (string)Session["sesionicontrol"];
     ....
}
于 2012-09-05T14:17:04.907 回答