Best uses for RSS - ASP
In this article, I will talk about some of the best uses for RSS. Some of the uses for RSS are for both business and fun! Think about it, you can log or blog your daily activities or log special events for families to see or even log your ... [... more]
Bella Online |
RSS and its future. - ASP
I want to talk a little about RSS and what the future holds for it. If you don't know, RSS stands for "Really Simple Syndication" which is a technology for displaying news articles and other important information. This information can be [... more]
Bella Online |
Force Download Dialog box with ASP - ASP
Have you ever been frustrated when you get to a website and there is documents, images and other content available for download and you want to do just that, download it! Instead, when you click on a content item, it proceeds to open in your ... [... more]
Bella Online |
Scenario1: Change the separator
Sometimes, you want to format a string into separated 3-digits to make it easier to read. This is the function to do it. You just need to paste it somewhere in your ASP code (or include it) and call it from anywhere in your code. Add this code ... [... more]
Bella Online |
Adding Charity Links to your Website - ASP
It's fairly easy to add a charity link - to the Red Cross or anybody else you support - to every page of your site, quickly. My personal charity of choice is the Red Cross - they help in all nations, regardless of religion, creed, color, gender, ... [... more]
Bella Online |
Auto Fill In Web Field Forms - ASP
Let's say you have a big contract page where you want a person's name to fill into many spots automatically when they type it in once. How do you do that? First, put a form on the entire page, starting at the top and ending at the bottom. That ... [... more]
Bella Online |
Browser-Specific Code for IE and Netscape - ASP
If you are designing a website, it is critical that you understand the differences between IE - Internet Explorer - and Netscape, and code for both. The first thing you need to do is figure out what type of browser your visitor is using. You ... [... more]
Bella Online |
Bubble Sort Code Technique - ASP
If you are sorting content into an order, one of the most simple techniques that exists is the bubble sort technique. In essence you start at one end of the list, move one by one to the other end of the list, and if you ever reach a situation ... [... more]
Bella Online |
Clearing a Form Field - ASP
Many uses of ASP involve forms, to process information from your users. Here's the super-easy way to have a prompt in a form field, but to have it vanish when the user clicks to type. The most common application of this is with email addresses. ... [... more]
Bella Online |
Counting Letter Frequency in an Array - ASP
This sample code helps you see what arrays can be used for, and also shows a loop in action. Let's say you want the user to input a sentence, and then you want to let them know how many times they used each letter of the alphabet. So if the user ... [... more]
Bella Online |
Creating a Random Password Generator - ASP
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 ... [... more]
Bella Online |
Creating an ASP Quiz / Test - ASP
Creating an online quiz or test for your website is easy with ASP. All you are doing is using forms to ask questions, and then comparing the answers with what you know to be correct. First, you need to plan out your quiz or test. I like to do ... [... more]
Bella Online |