我目前調用從同一按鈕點擊這樣的客戶端功能和服務器端功能...能從Asp:RadioButtonList調用客戶端和服務器端代碼嗎?
<asp:Button id="myButton"
runat="server"
cssclass="myButtonClass"
text="Do Stuff"
onclick="Do_Foo"
OnClientClick="Do_Bar();"/>
我想知道如果事情analagous是可能的一個單選按鈕列表...
<asp:RadioButtonList id="myRadioButtonList"
runat="server"
AutoPostBack="True"
onselectedindexchanged="Do_Fum"
...er...something here?>
<asp:ListItem ...or here perhaps?... Value="0">First Button</asp:ListItem>
.
.
謝謝。那是第一次。 –