2011-11-24 186 views
0

我目前調用從同一按鈕點擊這樣的客戶端功能和服務器端功能...能從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> 
    . 
    . 

回答

1

您可以使用下面的方法:在p的下方粘貼代碼年齡的Page_PreRender事件處理程序

foreach (ListItem item in myRadioButtonList.Items) 
{ 
    item.Attributes["onclick"] = "if(!confirm('Are you sure?'))return false"; 
} 
+0

謝謝。那是第一次。 –

0

您可以在javascript掛鉤的改變事件單選按鈕像

$('#myRadioButtonList').change(function() { 
    alert('Handle Your Change'); 
}); 
+0

謝謝。我應該把那個小片段放在哪裏? –

+0

其jquery,只是把它放在'

  • 11. 客戶端JavaScript服務器 - 可能嗎?
  • 12. Java客戶端服務器代碼
  • 13. Qt服務器客戶端代碼
  • 14. 如何從服務器端C#代碼觸發客戶端JavaScript?
  • 15. 從客戶端程序訪問服務器端代碼
  • 16. 如何從服務器端代碼獲取客戶端timeZoneOffset
  • 17. 如何從客戶端隱藏服務器端代碼?
  • 18. 客戶端和服務器端之間的共享代碼
  • 19. 如何同步服務器端和客戶端代碼?
  • 20. WCF服務器/客戶端回調,從客戶端到服務器的回覆
  • 21. 服務器和客戶端
  • 22. 的Http從客戶端加密到服務器和服務器到客戶端
  • 23. 服務器端和客戶端javascript
  • 24. 客戶端和服務器端
  • 25. 客戶端和服務器端驗證
  • 26. 客戶端和服務器端
  • 27. 服務器端和客戶端方法
  • 28. 在iPhone上運行客戶端和服務器的客戶端 - 服務器Web應用程序 - 這可能嗎?
  • 29. 刪除從客戶端和服務器
  • 30. 從服務器端代碼獲取會話信息到客戶端代碼