CFF KB - Carrz-Fox-Fire Promotions Knowledge Base
CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.Knowledge Base
- Breadrumbs:
Active Server Pages error 'ASP 0127'
- Article ID:
149 - Date Created
Wednesday, December 14, 2011 - Last Updated
Wednesday, December 14, 2011 - This Article Has been Viewed
2772 times - Short Desc
When you start off your server-side tag (HTML Comment), you must close the tag as well. - Details
When you create server-side tags, they have to be closed.
This happens a lot when you are in a hurry, and is simple to resolve.
Active Server Pages error 'ASP 0127'
Missing close of HTML comment
/Banner.asp, line 9
The HTML comment or server-side include lacks the close tag (-->). - Recreate Issue
To recreate this issue.
<style type="text/css">
<!--
@import url("css/main.css");
</style>
As you can see in the above code, we are missing closing server-side element -->
Which belongs above the closing style tag </style> - Resolve Issue
To resolve this problem
<style type="text/css">
<!--
@import url("css/main.css");
-->
</style>
We have added in the server-side tag --> above the closing style </style> tag.
Which resolves the issue, and the site will now run properly.
Share With Friends (Updated 6-8-2010)
Recent Articles
All Topics
- Coming Soon - Knowledge Exchange
Trending Articles
- Microsoft VBScript runtime error '800a0046' Permission denied FileSystemObject 24695
- Microsoft OLE DB Provider for SQL Server error '80040e57' String or binary data would be truncated. or The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data. 21297
- ADODB.Parameters error '800a0e7c' Parameter object is improperly defined 19544
- After Effects warning: Audio conforming failed for the following file .cfa. Perhaps due to disk space 17785
- The backup set holds a backup of a database other than the existing 16825