|
But DropDownList5 is a server control? What else does Request.Form do?
-------------------------------------------------- ----------
DropDownList5 is indeed a server control. At that time, getting its selectValue property can only be done in the background processing code of its original page
The role of request.form is to get the value of the control in the form form in the previous page. It is to submit data across pages
When it comes to cross-industry submission, request.form is generally used |
|