gpt4 book ai didi

c# - 无法加载类型 'HomePage.aspx.cs'

转载 作者:行者123 更新时间:2023-11-30 16:05:10 32 4
gpt4 key购买 nike

我正在实现一个小型网站,它将接受用户的输入并与 C# 中的数据库交互,但问题是后面的代码(.aspx.cs 文件中的代码)没有读取.aspx 文件,尽管我确实将 .aspx 文件的指令中的 inherit 属性指定为 .aspx.cs 文件。

这是 HomePage.aspx 文件

     <%@ 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>

这是HomePage.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.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");
}
}
}

我收到无法加载类型 'HomePage.aspx.cs' 的错误,那么我该如何处理此类事件?

最佳答案

您只需要类名而不是继承属性的完整文件名

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HomePage.aspx.cs" Inherits="HomePage" %>

关于c# - 无法加载类型 'HomePage.aspx.cs',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34029694/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com