Hello,
I have a multiple select list in a form. I want to get the items in that list. I have tried to get it like I get input text for example, with Request.Form("blabla"). But Request.Form("MultipleSelectList"), Gives me nothing.
How do I get the items in the multiple select list in the form? I guess it is pretty simple.
Thank you!
Loading
OrPosted Dec 22, 2008, 9:50 AM
Please, someone knows how to do that?
thx
Bechir BejaouiPosted Dec 21, 2008, 5:10 PM
System.Convert.ToString(charvalue);
System.Convert.ToChar(stringvalue);
OrPosted Dec 21, 2008, 2:07 PM
I tried to change the string to char and then I got: "Object reference not set to an instance of an object".
I think it tries to loop through the chars in the string that returned from the Request.Form...
Any idea?
Bechir BejaouiPosted Dec 21, 2008, 11:24 AM