//The background can only get the value value, not the text directly, it needs to be transferred through js and control
//Result: 275 276 277
Label1.Text = Request.Form[ddl1.UniqueID ] " " Request.Form["ddl2"] " " Request.Form[ddl3.ClientID.Replace("_", "$")] ;Problems encountered: The value of the drop-down box text is transferred through the HiddenField control
Assign the value of the selected drop-down box to the hidden control:
After selecting the drop-down box, the value dynamically assigned to the HiddenField control cannot correspond to the value selected in the drop-down box!
It may be related to initialization. Where should the assignment code be placed? Or is there any good method? Welcome to discuss?