I am calling the following javascript in asp.net button server control.
it is not running.
please clarify.
<title></title>
<script language ="javascript" >
function AlertMe() {
alert("Welcome to javascript");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<asp:Button ID="Button1" OnClick ="AlertMe();" runat="server" Text="Button" />
</form>
</body>
</html>