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>
任何想法?