public partial class Member : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["Username"] != null)
lblUsername.Text = Request.QueryString["Username"];
}
public string getUsername
{
get { return lblUsername.Text; }
}
}
}
This is when master page load will display Username to the lblUsername
and it success to display.
But when i go to others child page will lost the master page lblUsername
test. How Come? @@