C#如何获取下拉框ValueMember的值
我需要用到下下拉框的隐藏值做为条件查询数据库,请问用怎么获取隐藏的值?cboDepot.DataSource=dib.SelectWare();cboDepot.Disp...
我需要用到下下拉框的隐藏值做为条件查询数据库,请问用怎么获取隐藏的值?
cboDepot.DataSource = dib.SelectWare();
cboDepot.DisplayMember = "D_Name";
cboDepot.ValueMember = "D_ID";
我要的是把D_ID对应的值读取出来。 麻烦各位了 展开
cboDepot.DataSource = dib.SelectWare();
cboDepot.DisplayMember = "D_Name";
cboDepot.ValueMember = "D_ID";
我要的是把D_ID对应的值读取出来。 麻烦各位了 展开
3个回答
展开全部
为下拉列表的每一个项设置两个属性
DisplayMember//显示的文本
ValueMember //绑定的值
当显示的文本时某一个值时,ComboBox.ValueMember就是其隐藏的值了
DisplayMember//显示的文本
ValueMember //绑定的值
当显示的文本时某一个值时,ComboBox.ValueMember就是其隐藏的值了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
前台代码,后台代码如下,分别获取下拉框的Text和Value的值。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!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:ListItem Text="1111T" Value="1111V"></asp:ListItem>
<asp:ListItem Text="2222T" Value="2222V"></asp:ListItem>
<asp:ListItem Text="3333T" Value="2222V"></asp:ListItem>
</asp:DropDownList>
</div>
</form>
</body>
</html>
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;
using System.IO;
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(DropDownList1.SelectedItem.Text.Trim());//1111
Response.Write(DropDownList1.SelectedItem.Value.Trim());//111
}
}
}
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!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:ListItem Text="1111T" Value="1111V"></asp:ListItem>
<asp:ListItem Text="2222T" Value="2222V"></asp:ListItem>
<asp:ListItem Text="3333T" Value="2222V"></asp:ListItem>
</asp:DropDownList>
</div>
</form>
</body>
</html>
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;
using System.IO;
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(DropDownList1.SelectedItem.Text.Trim());//1111
Response.Write(DropDownList1.SelectedItem.Value.Trim());//111
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是通过下拉框ID.SelectedValue来获取选定值吗
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询