ASP stands for Active server pages is dynamic Web developing programming language.ASP uses server-side scripting to dynamically produce web pages that are not affected by the type of browser the web site visitor is using.VBScript is used as default scripting language for ASP. you can use other scripting languages ..asp extension is used instead of .htm. when a page with the extension .asp is requested by a browser the web server knows to interpret any ASP contained within the web page before sending the HTML produced to the browser.
This way all the ASP Dedicated web server runs and no ASP will ever be passed to the web browser.ASP was first introduced by Microsoft .IIS (Internet information system) is this windows web server used to run ASP pages.ASP as a normally contains HTML tags Just like an HTML file. However, surrounded by the delimiters <% and %>. Server scripts are executed on the server.
EXP :- HTML programming
<html>
<body>
<%
response.write(”Web Hosting!”)
%>
</body>
</html>
VB scripts (VB script is default for ASP)
<html>
<body>
<%
response.write(”Web Hosting!”)
%>
</body>
</html>
ASP variables are declared using VBScript declaration type.ASP is a very easy serverside dynamic web developing language for windows.

















Leave a Reply