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

时间:2012-10-03 23:57:48

标签: c# asp.net

首先,我是ASP.NET新手

为了在不同页面上的不同表单中重用我的下拉列表,我被告知要使用User Control来完成此操作。 所以我做了一些关于用户控制的阅读并尝试使用它,但是因为我是ASP.NET的新手,所以无法使用它。收到此错误:

  

无法访问外部类型的非静态成员' ASP.Vendor'通过嵌套类型' 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>

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

3 个答案:

答案 0 :(得分: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重新添加它。

示例项目结构
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>

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

答案 1 :(得分:0)

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

答案 2 :(得分:0)

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