10

首先,我是 ASP.NET 的新手

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

无法通过嵌套类型“ASP.Vendor._Default”访问外部类型“ASP.Vendor”的非静态成员

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>

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

4

3 回答 3

2

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

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 文件,绑定代码进入代码隐藏。

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

示例项目结构
在此处输入图像描述

标记 (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>

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

于 2012-10-04T00:01:37.633 回答
0

不要将类的定义放在 ASCX 本身内。创建一个单独的 CS 文件并使用<%@ Control ...指令上的 CodeBehind 属性引用单独的文件。ASP.NET 运行时将在首次访问时编译您的 ASCX 和 CS。

于 2012-10-04T00:00:28.273 回答
0

你在使用 Visual Studio 吗?如果是这样,您应该使用提供的模板,因为它会更容易,并且您可以一起避免这个问题。例如,要添加用户控件,您可以右键单击要放入的文件夹(位于解决方案资源管理器中),然后转到添加 -> 新项目。然后选择 Web 用户控件,为其命名并单击添加。

于 2012-10-04T00:11:14.653 回答