Friday, May 16, 2008

Alert Message and Confirmation Message

<script type="text/javascript" language="javascript" >
function ShowMessage(msg)
{
alert(msg);
return false;
}
</script >

Inside PageLoad
btnSubmit.Attributes.Add("onclick","return ShowMessage (\"Hellow how r u?\");");

*****************
function conifrm()
{
if (confirm==true)
else
return false;
}

PageLoad
btnSave.Attributes.Add("onclick,"return confirm('Are You Sure');");
}
***************

No comments: