ASP SSI, include
The #include directive is used to create functions, headers, footers, or elements that will be reused on multiple pages. The #include Directive You can insert the content of one ASP file into another...
View ArticleASP Global.asa
The Global.asa file is an optional file that can contain declarations of objects, variables, and methods that can be accessed by every page in an ASP application. The Global.asa file The Global.asa...
View ArticleASP Email with CDOSYS
CDOSYS is a built-in component in ASP. This component is used to send e-mails with ASP. Sending e-mail with CDOSYS CDO (Collaboration Data Objects) is a Microsoft technology that is designed to...
View ArticleASP Response Object
Response Object The ASP Response object is used to send output to the user from the server. Its collections, properties, and methods are described below: Collections Collection Description Cookies Sets...
View ArticleASP Request Object
Request Object When a browser asks for a page from a server, it is called a request. The ASP Request object is used to get information from the user. Its collections, properties, and methods are...
View ArticleASP Application Object
A group of ASP files that work together to perform some purpose is called an application. The Application object in ASP is used to tie these files together. Application Object An application on the Web...
View ArticleASP Error object
The ASPError object is used to display detailed information of any error that occurs in scripts in an ASP page. The ASPError Object The ASPError object was implemented in ASP 3.0 and is available in...
View ArticleFile System Object
The FileSystemObject Object The FileSystemObject object is used to access the file system on the server. This object can manipulate files, folders, and directory paths. It is also possible to retrieve...
View ArticleASP TextStream Object
The TextStream Object The TextStream object is used to access the contents of text files. The following code creates a text file (c:\test.txt) and then writes some text to the file (the variable f is...
View ArticleASP.NET on WAMP Server
ASP.net is a web application framework, developed and marketed by Microsoft, that programmers can use to build dynamic web sites, web applications and web services. It was first released in January...
View Article