Hi,
Iam creating small application in asp.net 2008
webform1.aspx
Name txtbox
Startdate txtbox(ajax calender extender ) when i select date it populate from startdate to endate in labels below the linkbuttons
enddate txtbox
sunlinkbutton //when i click sunlinbtn it redirects to webform2 if i close webform2 it redirects to webform1 .In webform1 whatever i enterd date ,name are disappers? I tried using session but not worked
sunlabel
webform1 sundaylinkbutton
protected void lnkBtnSun_Click(object sender, EventArgs e)
{
Session["emp"] = txt_EmpName.Text;
Response.Redirect("SundayServices.aspx?id=" + lbl_sun.Text);
}
In webform1 pageload
txt_EmpName.Text = (Session["emp"] != null) ? Session["em ...
Go to the complete details ...