Request.Form["DropDown1"]
-
I want to pass the value to a form by submitting it, Form1 has a
DropDownList
if it is enabled then the value passes to the Form2 In Form2 I dostring Id;
if(Request.Form["DropDown1"].Length!=0)
{
Id=Request.Form["DropDown1"];
}The problem is if the
DropDown1
is disabled(DropDown1.Enabled=false;
) then it does not get the value What do I do? Help! _____________________________________________________ Yea! I could be wrong... -
I want to pass the value to a form by submitting it, Form1 has a
DropDownList
if it is enabled then the value passes to the Form2 In Form2 I dostring Id;
if(Request.Form["DropDown1"].Length!=0)
{
Id=Request.Form["DropDown1"];
}The problem is if the
DropDown1
is disabled(DropDown1.Enabled=false;
) then it does not get the value What do I do? Help! _____________________________________________________ Yea! I could be wrong...