为什么我得到一个编译错误名称...在ASP的上下文中不存在?

时间:2013-11-15 17:40:31

标签: c# asp.net compiler-errors

我一直在asp.net应用程序中收到错误'当前上下文中不存在名称(x)'。我知道我必须在指向我的cs文件的include指令中包含正确的<% Page声明,并且inherit必须与我在其中定义的类相同。但似乎我仍然缺少一些东西。我用Google搜索了一段时间,试图找到遗漏的东西,但我见过的大部分内容似乎与我的特定问题无关。有人愿意帮忙吗?

.aspx文件中的代码(很好的部分):

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="App_Code/Logon.aspx.cs"   Inherits="_Logon" Debug="true" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="loginmat" runat="server">
<div>
<asp:Label ID="matInicial" runat="server" AssociatedControlID="inptMat" Text="Ingrese  su matrícula:"></asp:Label>
<asp:TextBox ID="inptMat" runat="server"></asp:TextBox>
<asp:CheckBox ID="chkPersist" runat="server" /><br />
<asp:Button ID="sbmtMat" runat="server" 

并在aspx.cs文件中:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Configuration;
using System.Data;
using System.Web.Security;

/// <summary>
/// Summary description for Logon
/// </summary>
/// 
public class _Logon : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void LoginBtnClick(object sender, EventArgs e)
{
    SqlConnection con = new   SqlConnection(ConfigurationManager.ConnectionStrings["conMatriculas"].ConnectionString);
    con.Open();
    SqlCommand cmd = con.CreateCommand();
    cmd.CommandText="SELECT matricula FROM dbo.Usuarios WHERE matricula=@mat";
    cmd.Parameters.AddWithValue("@mat", inptMat.Text);

查询中的最后一个变量是应用无法访问的内容。

1 个答案:

答案 0 :(得分:0)

看起来你错过了命名空间:

namespace YourNameSpace
{
    public class _Logon : System.Web.UI.Page
    {
    ...........