The function client side is not working properly...
- by jagdeep
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript">
function abc()
{
return confirm('are U sure?');
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="abc()"
onclick="Button1_Click" style="height: 26px" />
</div>
</form>
</body>
</html>
In the above page whether U click ok or cancel for confirmation box the processing transfer for server why?