G
grecci
I'm fairly new to the c# language.... I want to be able to retrieve info
from page 1 and carry it over page 3,4,5... then finally put into a
database... tell me what's wrong with this simple codes...
source.aspx
protected void Subitrequest_Click(object sender, EventArgs e)
{
Session["name"] = DropDownList8.Text;
}
----------------------------------------------------------
Target.aspx
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = Session["name"];
Response.Write(Label1.Text);
}
What I want to do is extremely simple, retrieve all sort of info from
textboxes and dropdownlists from source.aspx and carry them over to
other pages ....Again I'm using asp.net with C# ....
Thanks G.
from page 1 and carry it over page 3,4,5... then finally put into a
database... tell me what's wrong with this simple codes...
source.aspx
protected void Subitrequest_Click(object sender, EventArgs e)
{
Session["name"] = DropDownList8.Text;
}
----------------------------------------------------------
Target.aspx
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = Session["name"];
Response.Write(Label1.Text);
}
What I want to do is extremely simple, retrieve all sort of info from
textboxes and dropdownlists from source.aspx and carry them over to
other pages ....Again I'm using asp.net with C# ....
Thanks G.