ASP.NET HTML 控件 ArrayList RadioButtonList

asp.net html 控件 arraylist radiobuttonlist

<script  runat="server">
sub page_load
if not page.ispostback then
   dim mycountries=new arraylist
   mycountries.add("norway")
   mycountries.add("sweden")
   mycountries.add("france")
   mycountries.add("italy")
   mycountries.trimtosize()
   mycountries.sort()
   rb.datasource=mycountries
   rb.databind()
end if
end sub

sub displaymessage(s as object,e as eventargs)
lbl1.text="your favorite country is: " & rb.selecteditem.text
end sub
</script>


<!doctype html>
<html>
<body>

<form runat="server">
<asp:radiobuttonlist id="rb" runat="server"
autopostback="true" onselectedindexchanged="displaymessage" />
<p><asp:label id="lbl1" runat="server" /></p>
</form>

</body>
</html>
相关文章