Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

ASP

< >

ASP, aka Active Server Pages, is an open source template language created in 1996.

#192on PLDB 28Years Old 48kRepos
Wikipedia · Docs

Active Server Pages (ASP), later known as Classic ASP or ASP Classic, is Microsoft's first server-side script engine for dynamically generated web pages. ASP.NET, first released in January 2002, has superseded ASP.. Read more on Wikipedia...


Example from hello-world:
<%@ Language= "VBScript" %> <% Response.Write("Hello World") %>
Example from Wikipedia:
<% On Error Resume Next Response.Write 1 / 0 ' Division by zero If Err.Number <> 0 Then Response.Write "Error Code: " & Server.HTMLEncode(Err.Number) & "<br />" Response.Write "Error Source: " & Server.HTMLEncode(Err.Source) & "<br />" Response.Write "Error Description: " & Server.HTMLEncode(Err.Description) & "<br />" Err.Clear End If %>

Language features

Feature Supported Example Token
Strings ✓ "Hello world" "
Print() Debugging ✓ Response.Write
View source
- Build the next great programming language · About · Keywords · Resources · Acknowledgements · Part of the World Wide Scroll