下拉列表不允许动态添加新项目

发布于 2024-10-08 18:52:27 字数 715 浏览 0 评论 0原文

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class Expt : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {


    }
    protected void Bttnadd_Click(object sender, EventArgs e)
    {

       DropDownList11.Items.Add(ListBox1.SelectedItem);
        ListBox1.Items.Remove(ListBox1.SelectedItem);


    }
 }

在此,当我在下拉列表中添加项目时,它显示错误:“下拉列表不允许多重选择”

但是当我用来打印所选项目时,它显示空异常错误。

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class Expt : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {


    }
    protected void Bttnadd_Click(object sender, EventArgs e)
    {

       DropDownList11.Items.Add(ListBox1.SelectedItem);
        ListBox1.Items.Remove(ListBox1.SelectedItem);


    }
 }

In this when i add the item in dropdown list it shows an error:"Dropdown list does not allow multiple seelection"

But when i used to print the selected item It shows null exception error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烂人 2024-10-15 18:52:27

尝试添加这样的新列表项:

DropDownList11.Items.Add(
    new ListItem(ListBox1.SelectedItem.Text, ListBox1.SelectedItem.Value)
   );

因为您要添加由 ListBox 选择的 ListItem,所以它的 Selected 属性为 true。然后你会得到这个异常。

Try to add new list items like that :

DropDownList11.Items.Add(
    new ListItem(ListBox1.SelectedItem.Text, ListBox1.SelectedItem.Value)
   );

Because you're adding the ListItem that selected by the ListBox, it's Selected property is true. Then you get this exception.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文