如何在dropdownlist值改变时触发页面label的显示?
<asp:DropDownListID="Identify"runat="server"Width="70px"Font-Size="12"<asp:ListItemVa...
<asp:DropDownList ID="Identify" runat="server" Width="70px" Font-Size="12"
<asp:ListItem Value="student" Text="学生" />
<asp:ListItem Value="teacher" Text="教师" />
<asp:ListItem Value="admin" Text="管理员" />
</asp:DropDownList>
在label中写“注册”,想要dropdownlist选择教师和管理员时,不显示label框中的“注册”两字。请解答?在线等~~~ 展开
<asp:ListItem Value="student" Text="学生" />
<asp:ListItem Value="teacher" Text="教师" />
<asp:ListItem Value="admin" Text="管理员" />
</asp:DropDownList>
在label中写“注册”,想要dropdownlist选择教师和管理员时,不显示label框中的“注册”两字。请解答?在线等~~~ 展开
3个回答
展开全部
属性,AutoPostBack启用(true)
if( Identify.SelectedValue == "teache" || Identify.SelectedValue == "admin" )
label.Visible = false;
我试了可以的。
还不行就
if( Identify.SelectedItem== "教师" || Identify.SelectedItem == "管理员" )
label.Visible = false;
if( Identify.SelectedValue == "teache" || Identify.SelectedValue == "admin" )
label.Visible = false;
我试了可以的。
还不行就
if( Identify.SelectedItem== "教师" || Identify.SelectedItem == "管理员" )
label.Visible = false;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
页面无闪动,不见得就是autopostbakc为false. 现在asp.ajax技术也可以达到这种效果,或者你直接通过js来实现
1. ajax你可以去参考下 UpdatePanel控件的用法.
2. js的话你用dropdownlist的onchange() 事件(js事件)
1. ajax你可以去参考下 UpdatePanel控件的用法.
2. js的话你用dropdownlist的onchange() 事件(js事件)
追问
怎么设置啊?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
客户端:
<asp:DropDownList ID="Identify" runat="server" Width="70px" Font-Size="12" AutoPostBack="True" OnSelectedIndexChanged="Identify_SelectedIndexChanged" >
<asp:ListItem Value="student" Text="学生" />
<asp:ListItem Value="teacher" Text="教师" />
<asp:ListItem Value="admin" Text="管理员" />
</asp:DropDownList>
服务器段
protected void Identify_SelectedIndexChanged( object sender, EventArgs e )
{
if( Identify.SelectedValue == "teache" || Identify.SelectedValue == "admin" )
label.Visible = false;
}
<asp:DropDownList ID="Identify" runat="server" Width="70px" Font-Size="12" AutoPostBack="True" OnSelectedIndexChanged="Identify_SelectedIndexChanged" >
<asp:ListItem Value="student" Text="学生" />
<asp:ListItem Value="teacher" Text="教师" />
<asp:ListItem Value="admin" Text="管理员" />
</asp:DropDownList>
服务器段
protected void Identify_SelectedIndexChanged( object sender, EventArgs e )
{
if( Identify.SelectedValue == "teache" || Identify.SelectedValue == "admin" )
label.Visible = false;
}
追问
不行啊!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询