aspx:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript">
function SelectedChange(ctl)
{
if(confirm("test?") == false)
{
ctl.selectedIndex = document.getElementById('HidLastSelect').value;
return false;
}
else
{
document.getElementById('HidLastSelect').value = ctl.selectedIndex;
__doPostBack(''+ ctl.ClientID +'','');
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="btnSave" runat="server" Text="Button" OnClick="btnSave_Click"/>
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>All</asp:ListItem>
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
</asp:DropDownList>
</div>
<input type="hidden" id="HidLastSelect" value="0" runat="server" />
</form>
</body>
</html>
cs:
public partial class Default3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
btnSave.Attributes.Add("onclick", "Javascript:return confirm('Are you sure to save?');");
DropDownList1.Attributes.Add("onchange", "return SelectedChange(this)");
}
protected void btnSave_Click(object sender, EventArgs e)
{
Response.Write("hello");
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Write("changed");
}
}