我知道这已被问了数百次,但是我找不到解决问题的方法。我有这个 ascx 文件:
<%@ Control Language="C#" AutoEventWireup="true" Inherits="FrontClass.CreateClientPortals.TopNavBar, FrontClass.CreateClientPortals, Version=1.0.0.0, Culture=neutral, PublicKeyToken=40f3875c9d373801"%>
<div>
<asp:Literal ID="test1" runat="server" visible="true">some text</asp:Literal>
</div>
而这个代码隐藏:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.UI.WebControls;
namespace FrontClass.CreateClientPortals
{
public partial class TopNavBar : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
test1.visible = false;
}
}
}
尝试编译时,我收到错误:当前上下文中不存在名称“test1”
我应该注意这两个文件不在同一个目录中(他们需要吗?)而且我似乎无法生成 Designer.cs 文件(尝试在设计模式下编辑 ascx 文件,但没有出现)。我从另一个项目复制过来的 ascx 文件。
感谢您的帮助