ASP and HTML

ASP and HTML

Edit the text file and name halo.asp, place the halo.asp in the directory, known by the PWS (Personal Web Server). On the Access checkbox, enable "Execute" as in the example below.
 
<HTML>
<H1> Program with ASP </ H1>
</ HTML>
This program will be displayed through a Web-server as an ASP script. Calling the program is to: http://localhost/halo.asp
 
Hello program. Asp can use the response.write () as follows:
 
<% @ LANGUAGE = "VBScript"% ">
<HTML>
<% @ Response. Write ("<HI> program with ASP </ HI>"%>
</ HTML>
 
HTML text and function Response.Write () can be combined as follows:
 
<% @ LANGUAGE = "VBScript"%>
<HTML>
<% Response. Write ("<H1> program with ASP </ H1>")%>
this program in the show through the Web-server as an ASP script
<% Response.Write ("Calling the program is to:")%>
<I> Http://localhost/scripts/halo.asp <I> "%>
</ HTML>

0 comments:

Post a Comment