• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:ASP.NETでの"ME"の受け渡し)

ASP.NETでのMEの受け渡し

このQ&Aのポイント
  • ASP.NETでのMEの受け渡しについて質問があります。
  • VB6ではフォームに自分自身を渡す方法があるが、ASP.NETではエラーになる。
  • 実現可能な方法や代替案を教えてほしい。

質問者が選んだベストアンサー

  • ベストアンサー
回答No.2

コードが間違っていました。訂正します Private Sub Button1_Click() Dim TestClass as new clsTest TestClass.TestKansu(Me) End Sub Public Sub TestKansu(ByVal MyPage As Object) Dim o As System.Web.UI.Page o = CType(MyPage, System.Web.UI.Page) Dim la1 As Label = o.FindControl("Label1") la1.Text = "AAA" Dim la2 As Label = o.FindControl("Label2") la2.Text = "BBB" End Sub

その他の回答 (1)

回答No.1

Private Sub Button1_Click() Dim TestClass as new clsTest TestClass.TestKansu(Me) End Sub Public Sub TestKansu(ByVef MyPage As Object) Dim o As System.Web.UI.Page o = CType(mm, System.Web.UI.Page) Dim la1 As Label = o.FindControl("Label1") la1.Text = "AAA" Dim la2 As Label = o.FindControl("Label2") la2.Text = "BBB" End Sub

関連するQ&A