gpt4 book ai didi

c# - 列表框中的所选项目为空

转载 作者:行者123 更新时间:2023-11-30 13:15:40 25 4
gpt4 key购买 nike

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

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

<%@ 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>

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("\n 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);
}
}
}

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

最佳答案

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

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

ListBox1.DataSource = query;
ListBox1.DataBind();
}

关于c# - 列表框中的所选项目为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5859885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com