<asp:DropDownList ID="ddl1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="dd">
<asp:ListItem>性别</asp:ListItem>
<asp:ListItem>男</asp:ListItem>
<asp:ListItem>女</asp:ListItem>
</asp:DropDownList>
选择值后,页面总是刷新一次,怎么才能不让其刷新呢?
AutoPostBack="True"改成 AutoPostBack="False"
不要自动回传
哦,谢谢啊
对了,我还想问一下,select选中的值如何赋给服务器控件呢?