判断dropdownlist选中的值是否指定值
StringSN=TextBox1.Text;Stringfac=DropDownList1.SelectedItem.Value;Stringcla=DropDownL...
String SN = TextBox1.Text; String fac = DropDownList1.SelectedItem.Value; String cla = DropDownList2.Text; String num = TextBox2.Text;
Label1.Text ="A"; String fac1 = Label1.Text;
if (fac==fac1)//固定资产条码不允许重复 { Response.Write("<script>alert('资产已存在,保存失败');</script>");
}
dropdownlist中的值(A)来自于下图,而A也是从数据库中带出来的。数据库中定义为 char(10). 展开
Label1.Text ="A"; String fac1 = Label1.Text;
if (fac==fac1)//固定资产条码不允许重复 { Response.Write("<script>alert('资产已存在,保存失败');</script>");
}
dropdownlist中的值(A)来自于下图,而A也是从数据库中带出来的。数据库中定义为 char(10). 展开
展开全部
DropDownList有两个值,一个是Value属性的值,另一个是Text属性的值。根据你的需要可通过如下的方式获取到数据值,然后再根据获取到的值判断就可以了。
string sText=DropDownList1.SelectedItem.Text;//这是获取选中的文本值
string sValue=DropDownList1.SelectedValue//获取DropDownList中你设定的Value值
string sText=DropDownList1.SelectedItem.Text;//这是获取选中的文本值
string sValue=DropDownList1.SelectedValue//获取DropDownList中你设定的Value值
追问
不知道为什么就是不对,已经能确定值已经传进来了,我把fac的值输出到一个label标签里面,显示灯 正常的、、、、但是用if语句判断它是不是等于那个值的时候,就是不对啊!!!
追答
if语句那行加一个断点,然后调试程序看一下这两个值都是啥。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询