• <tfoot id='JILf0'></tfoot>
  • <i id='JILf0'><tr id='JILf0'><dt id='JILf0'><q id='JILf0'><span id='JILf0'><b id='JILf0'><form id='JILf0'><ins id='JILf0'></ins><ul id='JILf0'></ul><sub id='JILf0'></sub></form><legend id='JILf0'></legend><bdo id='JILf0'><pre id='JILf0'><center id='JILf0'></center></pre></bdo></b><th id='JILf0'></th></span></q></dt></tr></i><div id='JILf0'><tfoot id='JILf0'></tfoot><dl id='JILf0'><fieldset id='JILf0'></fieldset></dl></div>
  • <legend id='JILf0'><style id='JILf0'><dir id='JILf0'><q id='JILf0'></q></dir></style></legend>
      • <bdo id='JILf0'></bdo><ul id='JILf0'></ul>

      <small id='JILf0'></small><noframes id='JILf0'>

        列表框中的选定项为空

        Selected item in list box is null(列表框中的选定项为空)

        <i id='vmgBh'><tr id='vmgBh'><dt id='vmgBh'><q id='vmgBh'><span id='vmgBh'><b id='vmgBh'><form id='vmgBh'><ins id='vmgBh'></ins><ul id='vmgBh'></ul><sub id='vmgBh'></sub></form><legend id='vmgBh'></legend><bdo id='vmgBh'><pre id='vmgBh'><center id='vmgBh'></center></pre></bdo></b><th id='vmgBh'></th></span></q></dt></tr></i><div id='vmgBh'><tfoot id='vmgBh'></tfoot><dl id='vmgBh'><fieldset id='vmgBh'></fieldset></dl></div>

        <small id='vmgBh'></small><noframes id='vmgBh'>

        <tfoot id='vmgBh'></tfoot>

              <tbody id='vmgBh'></tbody>
              <bdo id='vmgBh'></bdo><ul id='vmgBh'></ul>
            • <legend id='vmgBh'><style id='vmgBh'><dir id='vmgBh'><q id='vmgBh'></q></dir></style></legend>

                  本文介绍了列表框中的选定项为空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  列表框中的项目很少.当我选择一个项目时,我将它存储在一个字符串中以供进一步使用,但是当我显示该字符串值时,它显示为 null.

                  下面是我的 Invitee.aspx 文件的代码:

                  <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Invitee.aspx.cs" Inherits="FinalProj2.Invitee" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 过渡//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="服务器"><标题></标题></头><身体><form id="form1" runat="server">

                  <asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList><asp:DropDownList ID="DropDownList2" runat="server"></asp:DropDownList><asp:DropDownList ID="DropDownList3" runat="server"></asp:DropDownList>&nbsp;&nbsp;&nbsp;&nbsp;<asp:DropDownList ID="DropDownList4" runat="server"></asp:DropDownList><asp:DropDownList ID="DropDownList5" runat="server"></asp:DropDownList><asp:DropDownList ID="DropDownList6" runat="server"></asp:DropDownList></div><asp:ListBox ID="ListBox1" runat="server" AutoPostBack="true" Height="310px"onselectedindexchanged="ListBox1_SelectedIndexChanged" 宽度="271px"></asp:ListBox><asp:TextBox ID="TextBox1" runat="server" Height="217px" Width="544px"></asp:TextBox></表格></身体></html>

                  Invitee.aspx.cs 的代码:

                  使用系统;使用 System.Collections.Generic;使用 System.Linq;使用 System.Web;使用 System.Web.UI;使用 System.Web.UI.WebControls;命名空间 FinalProj2{公共部分类受邀者:System.Web.UI.Page{FinalProj2.Models.DataClasses1DataContext db = new FinalProj2.Models.DataClasses1DataContext();protected void Page_Load(object sender, EventArgs e){for (int i = 1; i <13; i++){DropDownList1.Items.Add(new ListItem(i.ToString()));DropDownList4.Items.Add(new ListItem(i.ToString()));}for (int i = 1; i <32; i++){DropDownList2.Items.Add(new ListItem(i.ToString()));DropDownList5.Items.Add(new ListItem(i.ToString()));}for (int i = 2010; i <2021; i++){DropDownList3.Items.Add(new ListItem(i.ToString()));DropDownList6.Items.Add(new ListItem(i.ToString()));}var query = 来自 db.Employees 中的 emp选择emp.Employee_Name;ListBox1.DataSource = 查询;ListBox1.DataBind();}protected void ListBox1_SelectedIndexChanged(对象发送者,EventArgs e){Response.Write("你好");字符串选择 = ListBox1.SelectedValue.ToString();Response.Write("
                   选择的值是" + selected);var query = 来自 db.Employees 中的 emp其中 emp.Employee_Name == 已选择选择emp.Employee_ID;Response.Write(查询);//int empid = query.First();//var query1 = from meet_emp in db.Meet_Emps//其中 meet_emp.Employee_ID == empid//选择 meet_emp.Meeting_ID;//int meetid = query1.First();//Response.Write(meetid);}}}

                  在列表框中选择一个项目后,字符串selected"的值为空.

                  解决方案

                  这是因为你在每个周期都运行 ListBox1.DataBind().改为:

                  if (!IsPostBack){var query = 来自 db.Employees 中的 emp选择emp.Employee_Name;ListBox1.DataSource = 查询;ListBox1.DataBind();}

                  I have few items in the listbox. When I select an item, I store it in a string for further use, but when I display that string value it is shown as null.

                  Below is the code for my Invitee.aspx file:

                  <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Invitee.aspx.cs" Inherits="FinalProj2.Invitee" %>
                  
                  <!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>
                  
                          <asp:DropDownList ID="DropDownList1" runat="server">
                          </asp:DropDownList>
                          <asp:DropDownList ID="DropDownList2" runat="server">
                          </asp:DropDownList>
                          <asp:DropDownList ID="DropDownList3" runat="server">
                          </asp:DropDownList>
                  &nbsp;&nbsp;&nbsp;&nbsp;
                          <asp:DropDownList ID="DropDownList4" runat="server">
                          </asp:DropDownList>
                          <asp:DropDownList ID="DropDownList5" runat="server">
                          </asp:DropDownList>
                          <asp:DropDownList ID="DropDownList6" runat="server">
                          </asp:DropDownList>
                  
                      </div>
                      <asp:ListBox ID="ListBox1" runat="server" AutoPostBack="true" Height="310px" 
                          onselectedindexchanged="ListBox1_SelectedIndexChanged" Width="271px">
                      </asp:ListBox>
                      <asp:TextBox ID="TextBox1" runat="server" Height="217px" Width="544px"></asp:TextBox>
                      </form>
                  </body>
                  </html>
                  

                  And code for Invitee.aspx.cs:

                  using System;
                  using System.Collections.Generic;
                  using System.Linq;
                  using System.Web;
                  using System.Web.UI;
                  using System.Web.UI.WebControls;
                  
                  namespace FinalProj2
                  {
                      public partial class Invitee : System.Web.UI.Page
                      {
                          FinalProj2.Models.DataClasses1DataContext db = new FinalProj2.Models.DataClasses1DataContext();
                  
                          protected void Page_Load(object sender, EventArgs e)
                          {
                  
                              for (int i = 1; i < 13; i++)
                              {
                                  DropDownList1.Items.Add(new ListItem(i.ToString()));
                                  DropDownList4.Items.Add(new ListItem(i.ToString()));
                              }
                  
                              for (int i = 1; i < 32; i++)
                              {
                                  DropDownList2.Items.Add(new ListItem(i.ToString()));
                                  DropDownList5.Items.Add(new ListItem(i.ToString()));
                              }
                  
                              for (int i = 2010; i < 2021; i++)
                              {
                                  DropDownList3.Items.Add(new ListItem(i.ToString()));
                                  DropDownList6.Items.Add(new ListItem(i.ToString()));
                              }
                  
                  
                              var query = from emp in db.Employees
                                          select emp.Employee_Name;
                  
                              ListBox1.DataSource = query;
                              ListBox1.DataBind();
                          }
                  
                          protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
                          {
                              Response.Write("Hello");
                  
                              string selected = ListBox1.SelectedValue.ToString();
                  
                              Response.Write("
                   Selected Value is" + selected);
                  
                              var query = from emp in db.Employees
                                          where emp.Employee_Name == selected
                                          select emp.Employee_ID;
                  
                              Response.Write(query);
                  
                              //int empid = query.First();
                  
                              //var query1 = from meet_emp in db.Meet_Emps
                              //             where meet_emp.Employee_ID == empid
                              //             select meet_emp.Meeting_ID;
                  
                              //int meetid = query1.First();
                  
                              //Response.Write(meetid);
                          }
                      }
                  }
                  

                  Value of string "selected" is null after I select an item in list box.

                  解决方案

                  It's because you are running ListBox1.DataBind() on every cycle. Change to:

                  if (!IsPostBack)
                  {
                      var query = from emp in db.Employees
                                  select emp.Employee_Name;
                  
                      ListBox1.DataSource = query;
                      ListBox1.DataBind();
                  }
                  

                  这篇关于列表框中的选定项为空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Populate ListBox with a IEnumrable on another thread (winforms)(在另一个线程(winforms)上使用 IEnumrable 填充 ListBox)
                  listbox selected item give me quot; System.Data.DataRowViewquot; , C# winforms(列表框选择的项目给我quot;System.Data.DataRowView, C# Winforms)
                  Cannot remove items from ListBox(无法从列表框中删除项目)
                  Preventing ListBox scrolling to top when updated(更新时防止列表框滚动到顶部)
                  Drag and drop from list to canvas on windows phone with MVVM(使用 MVVM 在 Windows 手机上从列表拖放到画布)
                  Deselection on a WPF listbox with extended selection mode(具有扩展选择模式的 WPF 列表框上的取消选择)

                1. <legend id='4mHh0'><style id='4mHh0'><dir id='4mHh0'><q id='4mHh0'></q></dir></style></legend>
                  • <i id='4mHh0'><tr id='4mHh0'><dt id='4mHh0'><q id='4mHh0'><span id='4mHh0'><b id='4mHh0'><form id='4mHh0'><ins id='4mHh0'></ins><ul id='4mHh0'></ul><sub id='4mHh0'></sub></form><legend id='4mHh0'></legend><bdo id='4mHh0'><pre id='4mHh0'><center id='4mHh0'></center></pre></bdo></b><th id='4mHh0'></th></span></q></dt></tr></i><div id='4mHh0'><tfoot id='4mHh0'></tfoot><dl id='4mHh0'><fieldset id='4mHh0'></fieldset></dl></div>
                    <tfoot id='4mHh0'></tfoot>

                    1. <small id='4mHh0'></small><noframes id='4mHh0'>

                          <tbody id='4mHh0'></tbody>
                          <bdo id='4mHh0'></bdo><ul id='4mHh0'></ul>