What are Active Server Pages?
Active Server Pages, a server-side scripting platform developed by Microsoft, is managed by Internet Information Services (IIS) programs under Windows.
Active Server Pages
Right!
- dynamic
- dynamic
- ASP hides web pages
- ASP's latest version is 3.0, and
- ASP is going through
- ASP programs (including the part connected to the database) are embedded in ordinary HTML and other client languages. E.g
- Hello there!
- <!-The above is the output of "Hello!" In the browser, which is implemented by HTML->
- <%
- 'This line of comments will not be displayed
- Response.write "Baidu search engine" 'This line will output "Baidu search engine" in the browser
- %>
- From this we can see that the ASP language is embedded between "<% ...%>". And the final result of this program will be: Baidu search engine