Source Code lister
Display the raw ASP code for any page on the server. Bonus Fun: Make the default display the source code for your code lister!
OutputChat room
Display a page that shows the content of your chat room and has an input box for entering comments to be sent to the room. Should be able to allow more than two people to toss comments into the fray. Extra credit: user names, multiple rooms, etc.
OutputIndex of common words in a paragraph
Given this sample paragraph, list the three words that appear with the most frequency. Bonus if you can tell how many times the words were used. Double bonus if you ennumerate the frequency of all words. No hardcolding! :) This is a sample paragraph. There are many like it, but this is my sample paragraph. Samples are something that people often use as examples. If you remove all of the spaces from the phrase "A Sample Paragraph" it looks like like "ASampleParagraph." Being a sample, this paragraph doesn't need to make a point.
OutputHighlighted search results
Given the following paragraph, highlight (in a different color font) any search term entered in an input box. (Case matters!) Search term: sample This is a sample paragraph. There are many like it, but this is my sample paragraph. Samples are something that people often use as examples. If you remove all of the spaces from the phrase "A Sample Paragraph" it looks like like "ASampleParagraph." Being a sample, this paragraph doesn't need to make a point. Bonus terms: sam, graph, move
OutputIIS Debug Page
Display all of the servervariables, cookies from the client, Application Variables, and session variables (if there are any) -- loop through objects - don't hardcode.
OutputThermometer
Given a number (a percentage of 100 entered in an input box on the page) Display a 'thermometer'-type meter.
OutputClient-side refresh configurator (Extra Special Bonus Remix)
Without the use of ASP or server side scripting, display a page of (anything) with a Meta-refresh. Allow the client the capability of changing the refresh rate and remember the client's preference.