Timer

  • Thread starter Thread starter tomer
  • Start date Start date
T

tomer

Hi,

I'm using vb.net.

How can I create timer within aspx page that show the time ?


Thanks
 
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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top