Categories
Applications/Scripts
ASP
ASP NET
C and C++
Cold Fusion
Hosting Companies
Java Applets
JavaScript
Multimedia & Flash
Myspace Layouts
Perl
PHP
PHP Ad Management
PHP Affiliate Programs
PHP Auctions
PHP Bookmark Management
PHP Calculators
PHP Calendars
PHP Chat Scripts
PHP Classified Ads
PHP Click Tracking
PHP Communication Tools
PHP Content Management
PHP Counters
PHP Customer Support
PHP Database Tools
PHP Date and Time
PHP Development Tools
PHP Discussion Boards
PHP E-Commerce
PHP Email Systems
PHP Error Handling
PHP Exchanges
PHP FAQ and Knowledgebase
PHP File Manipulation
PHP Financial Tools
PHP Flash and PHP
PHP Form Processors
PHP Games and Entertainment
PHP Graphs and Charts
PHP Guestbooks
PHP Image Galleries
PHP Image Manipulation
PHP Link Checking
PHP Link Indexing
PHP Mailing List Managers
PHP Miscellaneous
PHP Multi-Level Marketing
PHP Multimedia
PHP Music Libraries
PHP Networking Tools
PHP News Publishing
PHP Open Directory Project
PHP Organizers
PHP Polls and Voting
PHP Portal Systems
PHP Postcards
PHP Quote Display
PHP Randomizing
PHP Redirection
PHP Reviews and Ratings
PHP Search Engines
PHP Security Systems
PHP Server Management
PHP Site Navigation
PHP Site Recommendation
PHP Software Repository
PHP Tests and Quizzes
PHP Top sites
PHP User Authentication
PHP User Management
PHP Vertical Markets
PHP Web Fetching
PHP Web Hosting Tools
PHP Web Rings
PHP Web Traffic Analysis
Python
Remotely Hosted
Tools and Utilities
Tutorials
• Apache
• ASP Tutorials and Articles
• Flash
• Java Tips and Articles
• Linux
• MySql
• PHP
Visitor Websites
Web Design Firms
Web Promotions
Web Templates
Webmaster Portals
Special Features
Cheap Ecommerce Hosting
Hosting at its best

Graphic Designs
Best Collection of the Best Graphics Flash Designs

ZeroWeb.org
a free online resource for webmasters.
Editors Picks
  • Coolest Templates
  • TON Hosting
  • CoolestDesigns
  • Graphic Scripts
  • City Finest
  • Targetable SEO
  • Graphic Designs
  • Desktop Wallpaper

  • Home : Tutorials : ASP Tutorials and Articles
    Click "Subscribe" if you want to be notified of new or updated links in this category.Subscribe
    ASP Tutorials and Articles Listings
    Total:  29Displaying: 1 - 15Pages: 1 2

    ASP 101 - A Database Interfacing Primer Website : Refer : Review It
    Using ASP highly interactive pages can be developed independent of the type of browser that will be used to access these pages - from Lynx to Internet Explorer 3.0. ASP encompasses the capabilities of both JavaScript and VBScript with the added bonus that components can be easily added to extend the Internet/intranet application. Using ASP as part of your development not only means that you can initially develop in Microsoft`s Access and scale up to a Microsoft SQL Server 6.5 database; but that you can access other vendor databases that are ODBC compliant. Its faster that using Visual Basic and the WinCGI interface - it will be interesting to compare performance with IDC and the use of an ISAPI filter to access a ODBC database. Needless to say, anyone who likes programming in Visual Basic is going to have a ball using ASP.


    Yahasp, a PerlHoo Alternative Website : Refer : Review It
    Our friend Jonathan Eisenzopf has done a brilliant job building a Yahoo like directory in PERL. The problem though is that I run NT, and IIS. I tried to install PERL and all the necessary files, but was not able to get it to work. Than I remembered one of the criteria was it had to be developed in less than a week. I thought it should be easy maybe even easier to write the same Yahoo like directory in ASP. ASP happens to be Microsoft`s Server Side Scripting language for their Web server IIS. However, before I go into the code let us first look at the criteria. 1. Organizes information hierarchically 2. Contains information about resources on the Internet 3. Allows users to suggest new resources 4. Allows editors to modify the directory content 5. Is simple to maintain 6. Takes less than 1 week to develop 7. Exports and imports directory content from/to multiple sources


    Mix and Match: Using VBScript to define and control JavaScript on Active Server Pages Website : Refer : Review It
    In the course of my Web page work I often have used JavaScript and VBScript on Active Server Pages (ASP). While searching the Web for references to help solve programming problems, it is easy to find pages to give examples on using one or the other, but rarely do you see information regarding using them both together. Using VBScript to control JavaScript can be as simple as using the VBScript to determine whether the JavaScript will be presented to the client browser at all. For instance, you may decide that unless a browser is at least compatible with Mozilla version 4, a given JavaScript function will not be written. In this example, we check the browser information sent by the client before writing our function.


    Uploading Images using HTML and ASP Website : Refer : Review It
    Well lets take a couple of examples. People renting their holiday homes might like to display a picture of the property on a Web site. News sites might like to allow people to send them pictures of events in their area. Ideally we would like the visitor to be able to upload these pictures themselves using their standard Web browser. Unfortunately images come in thousands of different formats, shapes, colors and sizes; almost none of which will mesh in with your beautifully designed site. This article is about how we can best solve this problem. To do this we will have to search down into the depths of HTML and ASP.


    SOM - Your New Baby Website : Refer : Review It
    For a Web developer, discovering the scripting object model, or SOM, is a lot like having a brand new baby dropped in your lap - it`s new, beautiful, and exciting, but unfortunately, it doesn`t come with any directions. So you, the doting Web developer, strive to learn how to work with this wonderful addition through trial-and-error, and wind up with a lot of sleepless nights! Where is Dr. Spock`s guide for making the SOM a mature member of your family of development technologies? I can at least tell you that the first chapter is right here. My goal in this article is to make you familiar with the SOM, and in the process show you the incredible capabilities it can add to your Web projects. I`ll also be sure pass along a couple of tips I`ve discovered - while chugging coffee and listening to the late, late show in the background.


    The Path to ASP Website : Refer : Review It
    Learning ASP Some time ago I wrote an article for WebReference called `10 Reasons To Develop in ASP`. After publication I received several e-mails from people telling me that I`ve convinced them to give ASP a try, but they didn`t know where to start. So now in this article, I will try to give some paths to learning ASP. Let`s start with explanation of what ASP is all about. ASP (Active Server Pages) is a server-side scripting technology, enabling developers to generate dynamic content for their Web sites. You just embed ASP code into your HTML pages, name them with `.asp` extension and place on the server. Sounds simple - and it really is, but some background knowledge will help you develop ASPs faster and more efficiently.


    Event Logging in .NET Website : Refer : Review It
    All the classes required for logging events to the windows event log are in the System.Diagnostics package. The most important class is the EventLog class. This allows reading and writing of event log entries. However, before any logs can be written an EventSource must be defined. Thus, in the simplest of scenarios, the following needs to be done


    Encapsulating Your ASP Page: One Common Method for Database Access to SQL Server and Oracle Website : Refer : Review It
    A primary definition of good object-oriented design is to promote true encapsulation of objects. Within the confines of an application dedicated for multi-user sites, this requirement becomes much more than a theoretical requirement, and can be the `make-or-break` difference in whether you are able to reach a customer.


    Debugging and Tracing in ASP.NET Website : Refer : Review It
    Before Web development was popular and most applications were stand alone programs debugging strategies depended a lot on how and where they were being developed. When developing in C/C++ printf(...) was a favorite debugging tool on both UNIX and DOS environments for programmers. That changed when Integrated Development Environments--IDEs--like Borland`s Turbo C++ and Microsoft`s Visual Studio came along. These allowed stepping through code and watching local and global variables in a GUI as each line of code was executed. Suddenly, debugging was much more efficient. All that changed once again with the Web programming model. Debugging was once again much harder and reduced to print statements. Server side debugging before Visual Studio .NET was never up to the mark. Even with Visual Studio .NET server side debugging still does not have all the bells and whistles that the older IDEs had while developing stand-alone applications. On the brighter side the .NET framework comes with an enhanced library to aid in debugging and performance monitoring that makes debugging Web applications easier than before.


    Adding Features to Your ASP Site Website : Refer : Review It
    In this article, I will try to show you how to implement some of today`s most popular site features in ASP. Let`s start with working examples of three commonly used features: a feedback form, a `recommend to a friend` feature and a 404 error reporter. The main function in the implementation of these three features is sending email from the ASP script. There are no built-in capabilities to send email from ASP, but there are lots of free and commercial components enabling you to do this. In this article, I`ll use the JMail component available for free from www.dimac.net. You may use any other component available on your host; it shouldn`t be difficult to adapt these examples to work on your site.


    10 Reasons to Develop in ASP Website : Refer : Review It
    Thinking about using ASP? Still looking to be convinced? Author Alan Mendelevich provides a personal top 10 list of reasons to make the leap. From the Webreference Update newsletter.


    Active Server Pages: ASP and Javascript together Website : Refer : Review It
    In this tutorial we will create a regular HTML page with a small javascript code, and we will use this javascript code to include in the page new information from a `.asp` file.


    Open and Read content from a text file Website : Refer : Review It
    Examples of read content text files. Really helpful for beginner



    Active Server Pages: Cookies Website : Refer : Review It
    Cookies method is very similar to Session method: the basic difference is that with Cookies method the information is save in the clients computer and not in the server, so it is more suitable for sites with a lot of visitors. This method implies sending information to the client and requesting it whenever the information is needed. Additionally, we will learn how to delete the information save in the clients computer when it is not necessary anymore.


    Active Server Pages: Dictionary Website : Refer : Review It
    In order to learn how Dictionary object works we will create a small script which will translate number 1 to 10 from English to Spanish.

    Featured Sponsor

    Related Links
    POWERFUL HOSTING
    Myspace graphic
    cool myspace comments
    cool myspace comments
    hot myspace comments
    Charlotte CPA
    Charlotte Web Design
    Baby Name
    Myspace Background
    Myspace Comment

    Bathroom Suites
    Thermocouple
    Free Online Casinos

    uk online bingo
    Uk Escorts
    Free Myspace Layout
    Top Affiliates
    Flash Templates
    Thousands of Great Flash Templates

    Logo Maid
    Thousands of Great Unique Logo Templates

    Java Games
    Check out many great java scripts

    Chipmunk Scipts
    Php Tutorials, polls and more

    Deonix Design
    Web templates, flash animated templates, flash intro, and more

    Free Web Templates
    Best collection of sites on the web
    Top Listings
    1. Adding Features to Your ASP Site
    2. How to Make Your Own Ebay
    3. Poll Your Visitors with ASP
    4. ASP using Dreamweaver UltraDev and PWS
    5. Hand-Coded SQL for UltraDev ASP Pages
    Popular Listings
    1. Adding Features to Your ASP Site
    2. ASP 101 - A Database Interfacing Primer
    3. Mix and Match: Using VBScript to define and control JavaScript on Active Server Pages
    4. Yahasp, a PerlHoo Alternative
    5. Uploading Images using HTML and ASP


    Home - Add a Link - Modify a Link - Login - Register - Advertise - About Us
    php, asp.net, perl cgi, wi unix hosting best hosting asp hosting windows hosting, server, webhosting, reseller, domain hosting, javascript
    Powerful Scripts - Oscommerce Templates - Java Scripts (C) 2002-2005. All Rights Reserved

    Website Marketing by:
    GuruWeb, LLC


    Myspace Resources: Many Myspace resources sites have Myspace Comments , Myspace Wallpaper and codes to Hide Myspace Comments along with Myspace Survey also Myspace Graphics inlcuding Myspace Smilies with Cool Myspace Comments to pimp myspace out!! You can also get Myspace Layout at Free Myspace Layout to make your Cool Myspace background.

    Dvd-to-mpeg v 1.9 keygen

    Baby Resources: Baby Name Meaning , Baby Name, Baby Gift , Baby Boy Namesand Baby