Server.Transfer() --> It will redirect to the respected webpage without changing the URL.
Server.Execute()--> It will redirect to the respected webpage and back to the contaning page.
Ex: If(username TextBox1.Text)
{
Server.Execute(aaaa.aspx)
}
else
{
-----------------
------------------------
}