ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

« Previous 1 2 3 4 5 6 Next »
3
Date Submitted Sat. Apr. 15th, 2006 12:40 AM
Revision 1
Syntax Master dannyboy
Tags admin | remote | VBSCRIPT
Comments 0 comments
enable remote admin settings
4
Date Submitted Sat. Apr. 15th, 2006 12:43 AM
Revision 1
Syntax Master dannyboy
Tags remote | services | VBSCRIPT
Comments 0 comments
List all services of a remote compute
-7
Date Submitted Sat. Apr. 15th, 2006 12:47 AM
Revision 1
Syntax Master dannyboy
Tags "Email Address" | txt | VBSCRIPT
Comments 1 comments
Retrieve email adresses from a given text file
-5
Date Submitted Sat. Apr. 15th, 2006 12:54 AM
Revision 1
Syntax Master dannyboy
Tags URLConnection | VBSCRIPT
Comments 0 comments
open internet explorer and navigate to a url
-5
Date Submitted Sat. Apr. 15th, 2006 2:56 AM
Revision 1
Syntax Master dannyboy
Tags connect | VBSCRIPT
Comments 0 comments
check server sessions
4
Date Submitted Tue. Dec. 5th, 2006 2:50 PM
Revision 1
Scripter Casper42
Tags VBSCRIPT | wscript
Comments 0 comments
This was an update someone else's snippet...
VBScript is a graceful language and Windows Scripting Host cleans up after itself, so this is a compact version for simple usage - reducing code bloat is what small scripts are for.

Just my $.02...
2
Date Submitted Sun. Sep. 9th, 2007 12:15 PM
Revision 1
Beginner bala
Tags ASP | VBSCRIPT
Comments 0 comments

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:
« Previous 1 2 3 4 5 6 Next »