■39129 / inTopicNo.5) |
Re[4]: PostBackされた時のIDを取得したい |
□投稿者/ ベジータ (13回)-(2009/07/30(Thu) 15:18:06)
|
で本題だけど、この過去スレッドが参考になると思う。(エンコードを UTF-8 に変えて読んでね) http://www.microsoft.com/japan/msdn/community/gdn/ShowPost-30003.htm ↑ JavaScriptでlableへ設定してそれを取得しても同じかと?
Button関係の時 Protected Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs)<-------でPostBackしました。 Dim strID As String = DirectCast(sender, Button).ID<-----------Buttonの時 Select strID Case "A_Button" A_Buttonの処理 Case "B_Button" B_Buttonの処理 End Select End Sub
DropDownList関係の時 Protected Sub DropDownList_Click(ByVal sender As Object, ByVal e As EventArgs)<-------でPostBackしました。 Dim strID As String = DirectCast(sender, DropDownList).ID<-----------DropDownListの時 Select strID Case "A_DropDownList" A_DropDownListの処理 Case "B_DropDownList" B_DropDownListの処理 End Select End Sub でまとめました。ありがとうございました。
|
解決済み
|