Thursday, July 06, 2006

isChecked Function

This is a function that I wrote to check whether a value is true in order to determine if a checkbox or a radio button is checked.

Use would be something likethe line below but with the {} replaced by <> if the value passed were true the box would be checked when the page loads.

{checkbox name="cbxOne" value="1"<%=isChecked(value)%>}

Click here to view the function.

Labels: , , ,

Thursday, June 15, 2006

My Tic-Tac-Toe

Here is a little tic-tac-toe game I wrote this morning... Enjoy.
And a link to the code: Click Here

Labels: , , , ,

Monday, May 22, 2006

Client Side Key Generator

Client side key generator. Allows the user to select whether all ascii characters are allowed(many are not acceptible for passwords in most systems), only common characters (these will usually be accepted for passwords), or no symbols (uses upper and lower case letters and numbers only)
Display Script
Execute Script

Labels: , ,