Forum Moderators: open
- John
Works without creating whitespace but *BAD* syntax formating practice!
<% Response.ContentType = "application/xml"%><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>JAB Creations</title>
</head><body>
<!--#include file="header.html"-->
<p>content here</p><!--#include file="footer.html"-->
</body>
</html>
Broken by adding whitespace but *GOOD* syntax formating practice!
<% Response.ContentType = "application/xml"%>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>JAB Creations</title>
</head><body>
<!--#include file="header.html"-->
<p>content here</p><!--#include file="footer.html"-->
</body>
</html>