永发信息网

</asp:DropDownList>问题

答案:2  悬赏:80  手机版
解决时间 2021-04-14 10:05
  • 提问者网友:临风不自傲
  • 2021-04-13 09:40

</asp:DropDownList>

代码如下

<form id="form1" runat="server">
<div>
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>boy</asp:ListItem>
<asp:ListItem>girl</asp:ListItem>
</asp:DropDownList>
</div>
</form>

后台

protected void MyDropDownListSex_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Write(boy);

Response.Write(girl);

}

我要选择girl就打印girl 选择BOY就打印BOY

最佳答案
  • 五星知识达人网友:北城痞子
  • 2021-04-13 10:52

if (mysousuo.SelectedIndex == 0)


{


Response.Write(boy);


}


if (mysousuo.SelectedIndex == 1)


{


Response.Write(girl);


}

全部回答
  • 1楼网友:蓝房子
  • 2021-04-13 11:47

if (this.DropDownList1.SelectedIndex == 1) { Response.Write(boy); }else

{

Response.Write(girl);

}

//在他的事件中默认选择是1 是1的时候就说明选择到了boy了 girl是2 这个是最简单的写法

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯