Alphabetical List
0
how to integrate with Zillow using classic ASP
2
If you're using passwords of any type on your site, it is best to keep them random. That way they cannot be easily guessed at by intruders.
First, it's good to know a little about ASCII characters. Every character your keyboard can type is actually represented by a number. So the letter A is represented by 65. The letter Z is represented by 90. So all you need to do is generate a series of random numbers, each number between 65 and 90. That would give you a way to find the equivalent letters.
If you want to include numbers too, those are found between spots 48 and 57. I wouldn't use the spots between 57 and 65 - those are odd characters like colons.
So let's say you want to create a 7 character password that contains a random assortment of letters and numbers. You could do something like this:
7
This code will show you how to encrypt user passwords with md5 algorithm and how to start using encrypted passwords if you already have users' database ready. The md5.asp you can download from my site http://www.webcheatsheet.com/asp/md5_encrypt_passwords.php
5
jpereira1
Find binary, malformed or non ascii characters in a file.
8
Convert an ebcdic buffer to an ascii buffer.
-4
Simple multi language choise on website
4
Using ASP or Active Server Pages it is actually quite easy to retrieve a users IP Address
-8
The following ASP code will allow you to Count and Display the amount of visitors that are currently on or viewing your website.
You will have to save this ASP code into a file called 'global.asa', which must be uploaded to the root of your webserver.
You will have to save this ASP code into a file called 'global.asa', which must be uploaded to the root of your webserver.
-7
Check if a user is logged in or not
-5
Validating the email address









