VB.net (VS 2005) 用户类访问 maindisplay.master.vb 的公共变量

发布于 2024-10-03 17:56:43 字数 506 浏览 1 评论 0原文

我正在尝试从用户类访问母版页类的公共成员。

在我的母版页中,我有:

Partial Class MainDisplay  
Inherits System.Web.UI.MasterPage

Public Shared m_test As Integer
  ...

在我的用户类中,我有:

Imports Microsoft.VisualBasic
Imports System.Web.UI.MasterPage  
Public Class mytest

Public Function getValue() As Integer

    Dim iRet As Integer = 0

    iRet = Master.m_test  ' how do i get access to the public member**

End Function
End Class

如何从用户类访问 m_test?

谢谢

I am attempting to access a public member of the Master page class from a User Class.

In my master page, I have:

Partial Class MainDisplay  
Inherits System.Web.UI.MasterPage

Public Shared m_test As Integer
  ...

In my User Class, I have:

Imports Microsoft.VisualBasic
Imports System.Web.UI.MasterPage  
Public Class mytest

Public Function getValue() As Integer

    Dim iRet As Integer = 0

    iRet = Master.m_test  ' how do i get access to the public member**

End Function
End Class

How do I get access to m_test from the user class?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

套路撩心 2024-10-10 17:56:43

我的 VB 有点生疏,但我注意到的第一件事是具有共享成员的类称为 MainDisplay 但当您尝试将其引用为 Master 时访问共享成员。如果您将其引用为 MainDisplay ,它是否有效(请注意,您可能需要完全限定命名空间或在 mytest 类文件中导入命名空间)。

My VB is a little rusty, but the first thing I notice is that the class with the shared member is called MainDisplay but you're referencing it as Master when you try to access the shared member. Does it work if you reference it as MainDisplay (note that you may need to fully-qualify the namespace or import the namespace in the mytest class file).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文