<% @ Page language = "c #" ContentType = "text / html" responseEncoding = "GB2312"%>
Void Page_Load (Object Sender, Eventargs E) {
Response.write (SELECT_1.VALUE);
Arraylist array = new arraylist ();
Array.Add ("Microsoft");
Array.Add ("Linux");
Array.Add ("UNIX");
SELECT_1.DataSource = array;
SELECT_1.DATABIND ();
}
// Compare the effect of submitting the page with the button with the Button
Void SelectButton (Object Sender, Eventargs E) {
Div_1.innerhtml = SELECT_1.VALUE;
}
Script>