我想当单击按纽后提交服务器,然后通过一个已经选择了的下拉列表判断是添加操作还是删除操作,如果是删除操作的话,弹出一个对话框,如果用户确定则删除数据,如果用户取消则不删除.
if (this.DropDownList2.SelectedItem.Text.ToString() == "添加")
{
//''''''''
}
else
{
//删除操作
//弹出对话框
//删除数据的代码(如果用户确定的话)
}
请高人指点啊?急,另外本页面还用了scriptmanager控件!
------解决方案--------------------------------------------------------
最简单的方法:在Datagrid的属性生成器中,在“删除”的文本中输入div onclick=JavaScript:return confirm('确定删除吗?')删除/div
就好了!
------解决方案--------------------------------------------------------
- HTML code
<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>无标题页</title> <script language="javascript" type="text/javascript"> function Isdel() { if(form1.DropDownList1.options[form1.DropDownList1.selectedIndex].value=="删除") { return confirm("确定删除吗?"); } else { return true; } } </script></head><body> <form id="form1" runat="server"> <div> <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem Selected="True">增加</asp:ListItem> <asp:ListItem>删除</asp:ListItem> <asp:ListItem>修改</asp:ListItem> </asp:DropDownList> <asp:Button ID="Button1" runat="server" Text="Button" /></div> </form></body></html>
------解决方案--------------------------------------------------------