内容页上显示的母版页中的字符串

发布于 2024-10-04 04:13:47 字数 708 浏览 2 评论 0原文

我试图在母版页中设置的内容页上显示一个字符串,但收到错误消息: 'compid' 不是 'ASP.test_master' 的成员

这是我的母版页代码:

<%@ Master Language="VB" debug="true"  %>
<script runat="server">
    Dim compid As String = "test"
</script>
<html>
<head></head>
<body>
<asp:ContentPlaceHolder id="CPHLoginButton" runat="server" />
</body>
</html>

我的内容页代码:

<%@ Page Language="VB" MasterPageFile="test.master" %>
<%@ MasterType virtualpath="~/test.master" %>

<asp:Content ContentPlaceHolderId="CPHLoginButton" runat="server">
    <%= Master.compid %>
</asp:Content>

有什么想法吗?

I'm trying to display a string on my content page which is set in the master page but i'm getting the error message: 'compid' is not a member of 'ASP.test_master'

Here's my master page code:

<%@ Master Language="VB" debug="true"  %>
<script runat="server">
    Dim compid As String = "test"
</script>
<html>
<head></head>
<body>
<asp:ContentPlaceHolder id="CPHLoginButton" runat="server" />
</body>
</html>

And my content page code:

<%@ Page Language="VB" MasterPageFile="test.master" %>
<%@ MasterType virtualpath="~/test.master" %>

<asp:Content ContentPlaceHolderId="CPHLoginButton" runat="server">
    <%= Master.compid %>
</asp:Content>

Any ideas?

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

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

发布评论

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

评论(2

爱冒险 2024-10-11 04:13:47

这可能是因为默认的访问修饰符。您的问题可以通过将 compid 设为公共来解决,如下所示 Public compid As String = "test"

Its probably becuase of default access modifier. Your problem can be solved by making compid public somethign like this Public compid As String = "test"

樱花落人离去 2024-10-11 04:13:47

您还可以尝试以下操作:

<%= (Me.Master as test).compid %>

You can also try the following:

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