function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
oracleoracle 

select multiple="multiple" accept data question?

   <apex:form id="theForm" forceSSL="true">
                <select multiple="multiple" size="3"  name="laogao" tabindex="12"  style="width: 235px; ">
                                                                                                            <optgroup style="font-size:9px;text-decoration:none;"label="Chosen">
                                                                                                                <p>
                                                                                                                </p>
                                                                                                               
                                                                                                                <option value="sdf">sdf</option>
                                                                                                                 <option value="sdf">sdf</option>
                                                                                                            </optgroup>
                </select>

</apex:form>

 

    String s = Apexpages.currentPage().getParameters().get('laogao');
system.debug('00NR0000000cxZ1_selected:::::::::' + s);

 

print s=null;

 

how solve this question?