Active Server Pages Tutorials, Code Examples & Articles
|
|
|
 |
| General
Java, Applets, J2EE,
J2ME, J2SE,
JavaBeans, JavaScript,
JDBC, Jini,
JSP, Servlets,
Swing |
 |
| General
Linux, Apache, MySQL,
PostgreSQL |
 |
| Active
Server Pages, ActionScript,
ASP.NET, C++,
C#, Perl,
PHP, Python,
Visual Basic, VB.NET |
 |
| |
Let the Education
Guide Network help you accelerate your career:
Learn more about...
Cooking
Schools
Culinary
Arts Schools
Online
MBA Programs
Our Web Sites:
Online
Degree Guide
The Vocational
School Guide
|
| |
| CSS,
DHTML, JavaScript |
 |
| ColdFusion,
Dreamweaver, Flash,
FrontPage, GoLive |
 |
| General
Web Services, .NET, SOAP,
UDDI, WSDL |
 |
| 3G,
802.11, EPOC,
i-mode, J2ME,
Palm, Pocket
PC, WAP, Windows
CE, WML, WiMax |
 |
| XML
(General) , ebXML, RSS,
SAX, XSLT,
VoiceXML, WML,
WSDL, XHTML,
XML Schema |
|
|
Tutorials & Training Courses
on CD-ROM
Over 300 Titles to choose from: from Web Design to
Programming, from
Dababases to Certifications. TRY FOR FREE!
Do you need high quality training at an afforable
price?
Do you need training that is easy to follow,
informative and allows you to master complex applications
fast?
Do you need to learn how to master Programming, Web
Design and Graphics?
Click
here to try a FREE Demo &
view the full range of training CD-ROMs
|
|
There are 740 articles & tutorials regarding "Active Server Pages".
- 25.) ASP.NET Screen Scraping
- ASP.NET and the .NET framework make it unbelievably easy to retrieve web content (that s it, whole web pages) from remote servers. You might have various reasons to retrieve remote web content, for example you might want to get the latest news headlines from popular news sites and link to them from your website. To accomplish screen scraping in classic ASP, we had to resort to COM objects like AspHttp, ASPTear and Microsoft.XMLHTTP. The good news is that the .NET framework has built-in...
Found at ASPdev.org
- 26.) ASP Request.ServerVariables collection
- ASP ServerVariables collection contains information about the server where your ASP script is running on information about the client requesting the ASP script. The ServerVariables collection can give you lots of information about the server settings Server IP, Server name, Server virtual path, Server Software (IIS4, IIS5 or IIS6), etc. Using ServerVariables you can get your visitors IP address, their browser version, their browser language settings, etc. The list of ServerVariables...
Found at ASPdev.org
- 27.) ASP.NET SQLCacheDependency with SQLite and Triggers
- ASP.NET SQLCacheDependency with SQLite 3.0 and Triggers By Peter A. Bromberg, Ph.D. "I am not part of the problem. I am a Republican." -- Dan Quayle The SQLite database engine is getting better all the time, with Version 3.0.6 now out and 3 "Final" not too far off. If you aren't familiar with SQLite, you might want to catch up by reading my previous article here . SQLite, as of this writing, is not yet fully ready for the Compact Framework, but it should be, very soon. Now that should...
Found at EggHeadCafe
- 28.) ASP Error Handling - On Error Resume Next
- In ASP you handle application errors by using the On Error resume Next statement. If you don t want your visitors to see ugly meaningless error messages, then you ll have to implement some kind of error handling in your ASP applications. How does ASP Error Handling work? The first think you need to do is to put the following line on the top of your ASP page: <% On Error resume Next %> This line simply tells the ASP interpreter, to continue with the executing of the ASP script if there...
Found at ASPdev.org
- 29.) ASP UCase Function
- The ASP UCase function is used to convert a string to upper case. The string argument of the UCase function can be any valid string. All lower case letters in the string passed as an argument to UCase are converted to upper case, while all upper case letters and special characters remain the same. Consider the following ASP code: <% sMyString = "ASP-Hosting.ca" sUpperCaseString = LCase(sMyString) Response.Write(sUpperCaseString) %> The code above will print the following in your...
Found at ASPdev.org
- 30.) ASP LCase Function
- The ASP LCase function is used to convert a string to lower case. The string argument of the LCase function can be any valid string. All upper case letters in the string passed as an argument to LCase are converted to lower case, while all lower case letters and special characters remain the same. Consider the following ASP code: <% sMyString = ASPdev.org sLowerCaseString = LCase(sMyString) Response.Write(sLowerCaseString) %> The code above will print the following in your browser:...
Found at ASPdev.org
More articles & tutorials (Index of all articles & tutorials)
|
|