gpt4 book ai didi

c# - 使用用户控件的 ASP.NET C# 下拉列表

转载 作者:可可西里 更新时间:2023-11-01 09:15:03 25 4
gpt4 key购买 nike

首先,我是 ASP.NET 的新手

为了在不同页面的不同表单中重用我的下拉列表,有人建议我使用用户控件来完成此操作。因此,我阅读了一些有关用户控件的资料,并尝试使用它,但由于我是 ASP.NET 的新手,因此无法正常工作。得到这个错误:

Cannot access a non-static member of outer type 'ASP.Vendor' via nested type 'ASP.Vendor._Default'

1) 我创建一个 Controls\Vendor.ascx 文件

<% @ Control Language="C#" ClassName="Vendor" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<%@ Import Namespace="System.Web.UI" %>
<%@ Import Namespace="System.Web.UI.WebControls" %>
<%@ Import Namespace="System.Configuration" %>
<%@ Import Namespace="System.Linq" %>
<%@ Import Namespace="System.Collections.Generic" %>

<script runat="server">

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
FillVendor();
}
}


private void FillVendor()
{
string strConn = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(strConn);
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "SELECT VendorID, VendorName FROM Vendor";
DataSet objDs = new DataSet();
SqlDataAdapter dAdapter = new SqlDataAdapter();
dAdapter.SelectCommand = cmd;;
conn.Open();
dAdapter.Fill(objDs);
conn.Close();

if (objDs.Tables[0].Rows.Count > 0)
{
VendorList.DataSource = objDs.Tables[0];
VendorList.DataTextField = "VendorName";
VendorList.DataValueField = "VendorID";
VendorList.DataBind();
VendorList.Items.Insert(0,"-- Select --");
} else {
lblMsg.Text = "No Vendor Found";
}
}
}
</script>
<asp:DropDownList ID="VendorList" runat="server" AutoPostBack="True" >
</asp:DropDownList>

2) 我用这段代码创建了一个 Tes2.aspx 页面,看看我是否可以拉出供应商下拉列表,但没有成功。

<%@ Page Language="C#" %>
<%@ Register TagPrefix="uc" TagName="Vendor"
Src="Controls\Vendor.ascx" %>
<html>
<body>
Testing
<form runat="server">
<uc:Vendor id="VendorList"
runat="server"
/>
</form>
</body>

显然,我是新手,肯定做错了。有人可以帮助我或给我一个用户控件中的下拉列表示例以及如何将其包含在表单中吗?谢谢!

最佳答案

我看到的第一个问题是您从 UserControl 中的 Page 继承:

public partial class _Default : System.Web.UI.Page

改为从 UserControl 继承。

// notice that I also renamed the class to match the control name
public partial class Vendor : System.Web.UI.UserControl

使用代码隐藏文件

正如@x0n 指出的那样,您的用户控件代码可以放在代码隐藏文件中(当您在 Visual Studio 中创建用户控件时自动创建)。用户控件通常由标记部分 (.ascx)、代码隐藏 (.ascx.cs) 和设计器文件 (.ascx.designer.cs) 组成。 HTML 标记进入 ASCX 文件,绑定(bind)代码进入代码隐藏。

我建议保存您的代码,删除您当前的用户控件,然后通过 Visual Studio 重新添加它。

示例项目结构
enter image description here

标记 (ASCX) 文件

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="VendorListControl.ascx.cs" Inherits="MyNamespace.VendorListControl" %>
<asp:DropDownList runat="server" ID="ddlVendorList" />
<asp:Label runat="server" ID="lblMessage" />

代码隐藏

using System;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;

namespace MyNamespace
{
public partial class VendorListControl : System.Web.UI.UserControl
{
protected void Page_Load( object sender, EventArgs e ) {
if( !IsPostBack ) {
FillVendors();
}
}

private void FillVendors() {
string strConn = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection( strConn );

SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "SELECT VendorID, VendorName FROM Vendor";

DataSet objDs = new DataSet();
SqlDataAdapter dAdapter = new SqlDataAdapter();
dAdapter.SelectCommand = cmd; ;
conn.Open();
dAdapter.Fill( objDs );
conn.Close();

if( objDs.Tables[0].Rows.Count > 0 ) {
this.ddlVendorList.DataSource = objDs.Tables[0];
this.ddlVendorList.DataTextField = "VendorName";
this.ddlVendorList.DataValueField = "VendorID";
this.ddlVendorList.DataBind();
this.ddlVendorList.Items.Insert( 0, "-- Select --" );
}
else {
this.lblMessage.Text = "No Vendor Found";
}
}
}
}

替代方法 - 删除类声明

如果您出于某种原因不想添加代码隐藏文件,请完全删除类声明并只包含其中的代码。

<script runat="server">
protected void Page_Load(object sender, EventArgs e){
if (!IsPostBack){
FillVendor();
}
}

// etc
</script>

作为旁注,我会将数据访问逻辑放在一个单独的类中以进行适当的分离/重用,但是一旦您纠正了上述问题,您概述的结构应该可以工作。

关于c# - 使用用户控件的 ASP.NET C# 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12718545/

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