我收到了这个流行的错误消息,但删除并重新添加设计器页面并没有帮助解决问题。当我创建这个Web应用程序时,我删除了Masterpage(基础结构)并将asp.net标头从另一个非site.master Web应用程序复制到此应用程序。我试图创建一个新的Web应用程序,但每次我这样做时都会附带一个我不想要的Site.Master。
所以我的问题是双管齐下,是否有一种简单的方法来创建一个没有site.master的web应用程序,只是一个简单的aspx页面,带有cs代码隐藏,或者如果我坚持使用当前的web应用程序,如何清理它以使页面上的控件在当前上下文中开始存在?
这是aspx页面的标题:
<%@ Page Language="C#" AutoEventWireup="True" CodeBehind="Default.aspx.cs" Inherits="VisionToPCC_XRef_Editor.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
<title>UltiPro to PolicyTech Import Utility</title>
<link rel="Stylesheet" type="text/css" href="Styles/Site.css" />
<link rel="Stylesheet" type="text/css" href="Styles/redmond/jquery-ui-1.10.3.custom.css" />
<script type="text/javascript" src="Scripts/jquery-1.9.1.js"></script>
<script type="text/javascript" src="Scripts/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript" src="Scripts/clientScripts.js"></script>
<%--Old header:
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="VisionToPCC_XRef_Editor._Default" %>
--%>
</head>
我注意到旧标题的继承(请参阅上面snipet的底部有一个额外的“_”,但添加此标题并不能解决问题。
我在很大程度上重新使用来自另一个简单的web应用程序的代码(在我到达之前由其他人创建),因此一些“在此上下文中存在”错误消息是针对不在这个新版本中的实际控件,但最初的错误是存在的。在我发布这个问题之后,我将通过并删除代码隐藏中涉及不存在的控件的所有代码......但是这里有一些来自我的aspx页面的控件示例,如果这有助于您的诊断:< / p>
<div id="div_XRef_Type">
<asp:RadioButtonList ID="rblChooser" runat="server" Font-Bold="True" AutoPostBack="true"
Font-Size="Medium" RepeatDirection="Horizontal"
onselectedindexchanged="rblChooser_SelectedIndexChanged">
<asp:ListItem Value="1">Payer Editor</asp:ListItem>
<asp:ListItem Value="2">Facility Editor</asp:ListItem>
<asp:ListItem Value="3">ADT-ToFrom Editor</asp:ListItem>
</asp:RadioButtonList>
</div>
<div id="div_Messages" runat="server">
<asp:Label ID="lbl_ErrorMessage" ForeColor="Red" Font-Size="Medium" Visible="false"
runat="server" />
</div>
我感谢任何非“删除你的设计师档案”的帮助,任何人都可以提供给我。
谢谢,
编辑: 以下是一些产生错误的代码(我会在所有大写字母中加上红色下划线):
private void BindGridView_Payer()
{
bool booReturn = false;
DataSet dsTable;
string sErr = "";
string sSQL = "";
LBL_ERRORMESSAGE.Visible = false; //hide the error message if it's visible.
try
{
if (RBLCHOOSER.SelectedValue.ToString() == "1")
{
DIV_PAYERGRID.Visible = true;
DIV_FACILITYGRID.Visible = false;
DIV_TOFROMGRID.Visible = false;
}
每次我从该aspx页面引用一个控件/ div时,它基本上都会给我一个上下文错误...这就是为什么我不打扰包括c#代码... 感谢。
答案 0 :(得分:2)
所以我的问题是双管齐下的,是否有一种简单的方法来创建一个没有site.master的web应用程序,只是一个简单的aspx页面,
是:
New Project
ASP.NET Empty Web Application
关于第二个问题
您的inherits
属性指向旧的设计器文件:
继承= “VisionToPCC_XRef_Editor.Default”
我怀疑指向正确的设计器文件会解决这个问题。这也解释了为什么删除然后重新添加设计器并不能解决问题。