Asp.net 3.5的DropDownList控件,自动更新数据的代码,要求要有确定和取消的询问?
Index.aspx
<body>
<form>
<asp:DropDownList ID="DDL" runat="server" AutoPostBack="True"
onselectedindexchanged="DDL_SelectedIndexChanged">
<asp:ListItem Value="0">开始</asp:ListItem>
<asp:ListItem Value="1">结束</asp:ListItem>
</asp:DropDownList>
</form>
</body>
Index.aspx.cs
protected void DDL_SelectedIndexChanged(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(), "ab", confirm('确定更改吗?');", true);
※这的返回值怎么取到C#来※
if(确定)
{语句块1}
else
{语句块2}
}
我知识浅,别和我说理论,我只要可运行代码,不需要解释!
运行的成功,我自己会明白,所以拜托各位行行好,好好回答!
谢谢