View the page on the Web server (local) as you go to ensure that the code is working as expected. Presently, your page is very simple. But, as you add more code, you will want to ensure that the page continues to work.
![]() |
To view the page in a local browser: |
MyFirstPage.cfm
:http://127.0.0.1/CFDOCS/MyFirstPage.cfm
Where 127.0.0.1
refers to the localhost and is only valid when you are viewing
pages locally.
Only HTML and text is returned to the browser.
The code that was returned to the browser looks likes this:
<HTML> <HEAD> <TITLE>My First Page</TITLE> </HEAD> <BODY> <STRONG>ColdFusion</STRONG> </BODY> </HTML>
Now that you have created the ColdFusion application page, move on to the next set of steps and add some CFML.