In my code I have 3 files such as,
Site1.master
Site1.master.cs
site1.master.design.cs
In Site1.master.cs file I have this code
protected void btnExpLogin_Click(object sender, EventArgs e)
{
string Username = txtExpUsername.Text.ToString();
string Password = txtExpPassword.Text.ToString();
if (Username == "u1" && Password == "111")
{
Session["ID"] = 1;
Response.Redirect("ResourcesProf/Home.aspx");
}
}
Then I change that code but penurious function is still run in the system. my new modification is not take place instead of about set of code
Go to the complete details ...