我正在实现一个小网站,它将从用户那里获取输入并与c#中的数据库交互,但问题是后面的代码(.aspx.cs文件中的代码)没有读取任何元素在.aspx文件中,虽然我确实将.aspx文件的指令中的inherit属性指定为.aspx.cs文件。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HomePage.aspx.cs" Inherits="HomePage.aspx.cs" %>
<!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="form1" runat="server">
<div>
<asp:Label ID="lbl_username" runat="server" Text="Username: "></asp:Label>
<asp:TextBox ID="txt_username" runat="server"></asp:TextBox>
<asp:Label ID="lbl_password" runat="server" Text="Password: "></asp:Label>
<asp:TextBox ID="txt_password" runat="server" TextMode="Password"></asp:TextBox>
<asp:Button ID="btn_login" runat="server" Text="Login" onclick="login" />
</div>
</form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data.SqlClient;
using System.Data;
public partial class HomePage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void login(object sender, EventArgs e)
{
string connStr = ConfigurationManager.ConnectionStrings["MyDbConn"].ToString();
SqlConnection conn = new SqlConnection(connStr);
SqlCommand cmd = new SqlCommand("loginProcedure", conn);
cmd.CommandType = CommandType.StoredProcedure;
string username = txt_username.Text;
string password = txt_password.Text;
cmd.Parameters.Add(new SqlParameter("@username", username));
SqlParameter name = cmd.Parameters.Add("@password", SqlDbType.VarChar, 50);
name.Value = password;
// output parm
SqlParameter count = cmd.Parameters.Add("@count", SqlDbType.Int);
count.Direction = ParameterDirection.Output;
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
if (count.Value.ToString().Equals("1"))
{
Response.Write("Passed");
}
else
{
Response.Write("Failed");
}
}
}
我收到的错误无法加载类型&#39; HomePage.aspx.cs&#39; ,那我该如何处理这样的事件呢?
答案 0 :(得分:2)
您只需要类名而不是继承属性的完整文件名
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HomePage.aspx.cs" Inherits="HomePage" %>
答案 1 :(得分:1)
Inherits
属性不应包含文件扩展名。这是the Microsoft documentation关于Inherits属性的说法:
<强>继承强>
为要继承的页面定义代码隐藏类。这可以是任何 从Page类派生的类。此属性与。一起使用 CodeFile属性,包含源文件的路径 代码隐藏类。使用时,Inherits属性区分大小写 C#作为页面语言,使用Visual Basic时不区分大小写 作为页面语言。
因此CodeBehind
(或网站项目的CodeFile
)属性应具有文件路径,而Inherits属性仅包含类名。尝试将Inherits="HomePage.aspx.cs"
替换为Inherits="HomePage"
,包括命名空间(如果适用)。