Timer

  • Thread starter Thread starter tomer
  • Start date Start date
Thanks all


Does any one have any example how to put this Javascript code in aspx page?
(vb.net recommended)


Thanks again
 
Does any one have any example how to put this Javascript code in aspx
page?
(vb.net recommended)

You can add JavaScript into an aspx page simply by copying and pasting or
typing manually - you don't need to do it through server-side code unless
you want the script to be dynamic...

<html>
<head>
<script type="text/javascript">
function messageBox(pstrMessage)
{
alert(pstrMessage);
}
</script>
</head>
<html>
 
Back
Top