DropDownList设置AutoPostBack="true"后自动回发失效问题

网页中现有一个DropDownList,已经AutoPostBack="true",在本机测试运行良好,但是传到服务器上自动回发就失效了,代码如下:<%@PageLang... 网页中现有一个DropDownList,已经AutoPostBack="true",在本机测试运行良好,但是传到服务器上自动回发就失效了,代码如下:

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
If choice.SelectedItem.Text = "选择题" Then
Response.Write(choice.SelectedItem.Text)
ElseIf choice.SelectedItem.Text = "判断" Then
Response.Write(choice.SelectedItem.Text)
ElseIf choice.SelectedItem.Text = "填空" Then
Response.Write(choice.SelectedItem.Text)
ElseIf choice.SelectedItem.Text = "简答" Then
Response.Write(choice.SelectedItem.Text)
End If

'Response.Write("dd")

End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server" method="post">
<div>
<asp:DropDownList runat="server" ID="choice" AutoPostBack="true">
<asp:ListItem>选择题</asp:ListItem>
<asp:ListItem>判断</asp:ListItem>
<asp:ListItem>填空</asp:ListItem>
<asp:ListItem>简答</asp:ListItem>
</asp:DropDownList>
</div>
</form>
</body>
</html>

请问这个是什么引起的,该怎么解决? 谢谢
展开
 我来答
无敌天蟹
2012-05-12 · TA获得超过1198个赞
知道小有建树答主
回答量:355
采纳率:0%
帮助的人:387万
展开全部
你把script那段if语句写到selectchanged事件下试试
蔡德江
2012-05-12 · TA获得超过3187个赞
知道大有可为答主
回答量:1700
采纳率:0%
帮助的人:1431万
展开全部
DropDownList用法用错了;百度下例子

双击你的DropDownList
会自动生成对应的事件
protected void choice_SelectedIndexChanged(object sender, EventArgs e)
{
//这里写你的代码
If choice.SelectedItem.Text = "选择题" Then
Response.Write(choice.SelectedItem.Text)
ElseIf choice.SelectedItem.Text = "判断" Then
Response.Write(choice.SelectedItem.Text)
ElseIf choice.SelectedItem.Text = "填空" Then
Response.Write(choice.SelectedItem.Text)
ElseIf choice.SelectedItem.Text = "简答" Then
Response.Write(choice.SelectedItem.Text)
End If
}

还有就是如果用ajax的updatepanel 这个控件不包起来的话 页面就不会刷新,不然你DropDownlist选择不同选项会刷新整个页面
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式