dude...First things First !!!!
In Order to run Pages ending with ASP(abcd.asp) , you first need to either have PWS or IIS .PWS is found in Windows 95/98/Me. By Default it doesnt Get Installed (unless , you install using Custom way)....
IIS is installed in Windows 2000/XP/NT....bydefault it is installed
When you have done that , you should get a Folder called InetPubs in your System Drive , incase its C , then the path woould be C:\InetPubs
and wihtin this, there would be lots of folder (guess 6 or 7) , you should find one called wwwroot. This is where you will place all your files . all files including your html , asp pages everything which you want host .
One way of checking whether IIS Server is on or not is like this:
Type The Following address in your Broswer Address
Incase , some pages appear, then its enabled(by default , it is started). Incase , it is not, you can click on PWS Icon (think , it would be in Control Panel) and click on Start Button.
And in Xp/2000/NT , you can click on IIS Server in Admin Tools and Just Click the Play Button , it will start .
Try Following Code in a Note pad and save it as .asp page (like test.asp) and save it on the wwwroot Folder
<%
Response.Write("Hello, Test Page")
%>
and wooo..Ur ASP Pages are running.
You can Embed ASP Script within your HTML Page , but remember the <% %> tags.........
Good Luck