Answer: With the help of Page.Title property,we can change Title Dynamically.
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Page_From"] == "Recruitment")
{
Page.Title = "Recruitment Console";
}
else
{
Page.Title = "Referrel Console";
}
}
Asked In: Many Interviews |
Alert Moderator