 |
Custom Validators using Client Side JavaScript
Paul Marshall (1908 views)
Custom Validators using Client Side JavaScript
In my latest project I am really enjoying using the Ajax Control Toolkit, particularly the ModalPopupExtender.
I've been using the popup panels to capture data, but I needed to validate the data that a user enters into certain fields. ASP.net's
|
 |
Date and Time Functions
Barrington Haynes (3073 views)
Date and Time Functions
Here's a handy reference for all of your JavaScript date/time needs.
||'''Function'''||'''Description'''||'''Returned Values'''||
||getDate(), getUTCDate()||Day of the month||1-31||
||getDay(), getUTCDay()||Day of the week (integer)||0-6||
||getFullYear(), getUTCFu
|
 |
Garmin and Google Maps
Dave Howard (8709 views)
Garmin and Google Maps
The bought a Garmin Forerunner recently which is a really cool piece of kit but the maps that come with it are very poor.
Google maps has an API that allows you to integrate these rich maps into your own web applications.
Garmin has the option to export your traini
|
 |
Prompting the user
Barrington Haynes (1495 views)
Prompting the user
There are three functions you can call which will force the user to acknowledge them. These are
* alert()
* confirm()
* prompt()
alert()
If you would like to present the user with a notice before allowing them to continue using your web page, you can display a
|