Results for "Volume: 2002ASP"
RCA is used for most standard public key/private key encryption techniques. Due to its burden on resources, RCA is generally used to encrypt random session keys wich are then used to encode messages with RC4. RCA also brings digital certificates into the picture. This, and many other "public" algorithms using RC4 do not truly make the message secure. Encryption is performed in 8 bit blocks - or 1 byte. Typing "AAAAAA", you will see a pattern begin for form with the encrypted data. If someone were to look at the results from encrypting each letter of the alphabet, your data would be compromized. Also, the public/private keys are limited between a range of 1 and about 65000. This is primarily a starting point if you want to enable a more secure encryption scheme, or you just want to learn more about it.
Queries a WhoIs server for for domain information. Useful for people who want to sell domain names. This version uses the XMLHTTP component that is installed on most servers, so there is no additional need to install any extra COM objects.
This code pulls out all the nasty tags that a user sholdn't use when posting content. It also pulls out any javascript events assigned to any tags. A must have if you allow people to post HTML on your site.
Sorts a 2-dimensional array
This is a .bas module that contains a few string manipulation functions I find useful in the real word. MakeProper replaces the limited proper case functions of VB with code that will format your string in title case, but not force mid-word capital letters to lower case. So "John Smith III" or "MacDonald" comes out correctly if typed are typed as "john smith III" or "macDonald". Initial letters of words are capitalized, but other letters are left as typed. DateWord takes a date and converts it to the phrasing used on legal documents, so 1/1/2000 would return "1st day of January, 2000." MailingLabelText accepts a number of inputs and returns a UDT that offers many variations on the name and address for use in creating mailing labels and other reports containing name and address data. The proper business ettiquette is observed in that the presence of an honorific like "Esquire or MD" eliminates the "Mr." or "Dr." Look for an update of this soon with more functions for string manipulation. The other functions are used by these three. LogError is pretty useful, too, come to think of it! I don't care about winning any prizes, I just wanted to contribute to a site that has helped me out so much. Your feedback is welcome all the same. PLEASE STILL RATE THIS SO I WILL KNOW WHAT YOU THINK!
This code will count the number of words in a textbox. A friend asked how to do this so I thought I'd post my reply.
Click Here for New Version! This is stock quote ticker, which gets the latest stock information in real time from Yahoo! finance website. This script scrolls the text on the page without the use of Macromedia Flash or Java applet. My stock ticker is a good emulation of Java or Flash tickers because it pause on MouseOver and un-pauses on MouseOut. It include many advanced and convenient features, good error checking, and slick interface. Designed in only ASP and VBScript, this application can be quickly adapted for your needs. Enjoy and *** PLEASE RATE THIS SCRIPT! ***
Many still think it is not possible to use templates with ASP the CGI way (Perl/C++). Well, it IS possible! I have seen some script that simulate this, but not like this one. You can now have a completely template driven website in a snap. Templates can run ASP VBScript and/or show HTML to the user's screen. Take a look to the code and you will be convinced!
Displays a dynamic calendar in html using asp
The purpose if this code is to help you understand how syndication is performed on the Web. You need only 3 files: - Syndicate.mdb (Access 2000 File) - ShowNews.htm - Track.asp (The Syndication function) With this way, XYZ.com (The content provider) can only update the DB file on routine basis and ClientDomain.com (the content receiver) can post the link and not worry about updating news because the content is being streamed/syndicated to you by inlcuding the link on your HTML page. Companies like iSyndicate.com use similar mechanism to provide content to its partnerts.
This code will minimize, maximize and send keystrokes from within your program to any application.
My head-ache medicine for programming cross-browser webpages.
Hello, This is a complete security small webpages I using ASP. Its allows user to enter their username/userpassword, in order to getting further into your webpages. Its also allows new user to creates a very simple account like: User FullName, User nickname and User password. I hope that it will gives you ideas to program better in ASP. Thank you for using this Tri Nguyen PS: Please dont forget to rate and drop me a line for this my friends!
Users can submit their Username, password, and E-Mail address to register for your site! You can then use a password/username checker from this site to see if the logged in correctly!
This is a asp include that will add a image gallery to your page you can have catagorys comment system and alot of images titles and user comments (can be turned off) auto thumbviews of images and will always run in the same page you included it in never opening a new window. there is also a control panel built on to i so you can administer it online (it is hiden you have to add ?a=cp to the path)
Support Solution is a complete customer service/tech support issue entry and completion system, which greatly facilitates the use of remote service employees. A call comes in, gets logged by a local user, gets taken by a remote user, resolved or passed on, then can be viewed from history. Report writing capabilities show how much work has been done BY a user, and FOR a customer. Keep track of whether remote users are logged in or not.
To gather all server variables, and display them nicely in a readable format.
the engine i am providing is an asp code generator that i am currently using on my website (www.intratelligent.com) to allow asp developers to upload access databases online and build simple asp interfaces to interact with their data. (insert / update / delete and reporting functionality). although it is coded in vb, it can be compiled into a dll to be used as an object referenced by asp. otherwise it can be run as a stand-alone vb app. i have included a screen shot and added commenting to my code to make it more understandable. if you do not have a lot of experience in vb and asp this will be difficult for you to modify although it can be implemented by anyone.
Returns the date of the week-ending day based on the input date. Useful for due-by dates, weekly accounts etc.
I have seen many active users scripts but they seem to use the session_onend and session_onstart subs in the global.asa to function. This is a pity because most FREE providers do not support global.asa because of resource consumption on the servers :( Thats why i have made this script that doesnt use global.asa :) There is a readme file in the zip to tell you how to use it and an update to this will be made later today which will include active user statistics page and an easier way of implementing the active users variable (not that its hard in this). Have fun and i hope this helps alot of people. *Updated* Fixed a bug which reported the time online do be two large because of not handling AM and PM signs in date. Well please vote for me if you like the code :)