c#获取一组DropDownList的选中项Value和Text的值
有一组dropdownlist想同时获取选定项的text文本!用DropDownList.selectedItem.value结果却选中了每个DropDrownList的...
有一组dropdownlist 想同时获取选定项的text文本!用DropDownList.selectedItem.value 结果却选中了每个DropDrownList的第一项的Text的值!那位可以告诉我为什么啊?应该怎样正确获取DropDownList的value值和Text文本
展开
展开全部
DropDownList.SelectedValue 选定值
ddlState.SelectedItem.Text 当前文本
ddlState.SelectedItem.Text 当前文本
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就应该用这个语句的
DropDownList.selectedItem.value
至于你获得的值不对,是因为你没有把DropDownList的AutoPostBack属性设为true。
DropDownList.selectedItem.value
至于你获得的值不对,是因为你没有把DropDownList的AutoPostBack属性设为true。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
protected void Button1_Click(object sender, EventArgs e)
{
string s1 = DropDownList1.SelectedItem.Text;
string s2 = DropDownList2.SelectedItem.Text;
string s3 = DropDownList3.SelectedItem.Text;
string s4 = DropDownList4.SelectedItem.Text;
Response.Write(s1 + s2 + s3 + s4);
}
没有任何问题
{
string s1 = DropDownList1.SelectedItem.Text;
string s2 = DropDownList2.SelectedItem.Text;
string s3 = DropDownList3.SelectedItem.Text;
string s4 = DropDownList4.SelectedItem.Text;
Response.Write(s1 + s2 + s3 + s4);
}
没有任何问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
combox吧是 你把它设为dropdownlist风格吧是?
获取combox的文本和后台值如下
this.combox.selectItem.tostring
this.combox.valueMenber//前提是你得绑了后台值
获取combox的文本和后台值如下
this.combox.selectItem.tostring
this.combox.valueMenber//前提是你得绑了后台值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
两种解决办法,一个是可以把DropDownList的AutoPostBack属性设置为true; 另一个办法是用javascript实时获取选定的项目
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询