Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp explanation

Status
Not open for further replies.

jakess

Technical User
Apr 17, 2000
418
0
0
ZA
i'm new to this...
Can someone please tell me why and when will i need to use ASP and how and where must i install it
 
Install it? You don't install ASP (at least not from my experience..however I am still fairly new (approx 5 months)). ASP hides server side scripting from the client while allowing you to interact with databases. So if you say want to have a login page for your site and only allow users who log in access, you can create a userID and password list in a database. Then with asp, after they submit the form with their entered id and pwd, you can on the next page pull up the database and see if there is a match. The client will never see this page nor the script showing where on your hard drive tree it lays, nor any field names, or a password if you have one set. Therefore, they will not be able to just download it by seeing it in your source script and then have access to your site when they shouldn't.

That is just one example. Pretty much the only thing I deal with now is asp.

Perhaps someone else would be able to explain it better than me.(?)

-ovatvvon
 
ASP (Active Server Pages) is a form of CGI scripting on a web server. ASP resides as a number of .DLL files that are installed with Microsoft Internet Information Server (IIS) 2.0 and greater. The ASP parsers are also installed with Microsoft Personal Web Server.

For those using Unix operating systems, ChilliSoft makes an ASP interpreter that works with Netscape's HTTP server as well as Apache.

Alternatives to ASP include ColdFusion, Perl and standard CGI programming or PHP.

ASP offers an advantage over other server side scripting technologies, in that it support a number of languages (perl, vbscript and javascript to name a few) and allows quick development of server scripts.

In order to start using ASP you need to install IIS or PWS.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top