在aspx-page中显示DropDownList

时间:2011-07-02 20:16:30

标签: c# asp.net drop-down-menu

我在C#代码中创建了下拉列表。如何在aspx页面中显示这个ddlist? 我的代码:

<%
    DropDownList list;
    for (int i = 0; i < 10; i++)
    {
        list = new DropDownList();
        list.ID = i + "_ID";
        %>
        <!-- how to display drop down list here??? -->
        <%
    }
 %>

2 个答案:

答案 0 :(得分:1)

这是我在aspx代码中的内容。

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

<!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>
            <table>
                <tr>
                    <td>
                        <asp:Panel ID="PanelAmk" runat="server">
                            <table>
                                <tr>
                                    <td>
                                    </td>
                                </tr>
                            </table>
                        </asp:Panel>
                    </td>
                </tr>
            </table>
        </div>
    </form>
</body>
</html>

此代码创建一个名为PanelAmk的面板的网页,仅此而已。

以下是我在aspx.cs代码(C#代码)中的内容,它基本上为上面创建的页面添加了DropDownList

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace DenemeWebApplication
{
    public partial class DenemeWebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            DropDownList dropdownlistAmk = new DropDownList();//creates a new dropdownlist
            dropdownlistAmk.Items.Add("amk");//adds an item to dropdownlistAmk created above
            PanelAmk.Controls.Add(dropdownlistAmk);//and adds dropwdownlistAmk to PanelAmk

        }
    }
}

您缺少的是使用DropDownList

...Controls.Add(...)添加到控件中

答案 1 :(得分:0)

由于您已在代码中创建了控件,因此页面上尚不存在该控件。您需要将其添加到页面上的某个位置。例如,您可以装饰性地创建ID为“myPanel”的asp:Panel,然后通过代码添加ddlist,如下所示:

myPanel.Controls.Add(ddlist);

有关此过程的完整说明,请查看以下MSDN文章:How to: Add Controls to an ASP.NET Web Page Programmatically