I tried your problem, but a little differently, and it seems to work.
In an existing Visual Studio ARP.NET 1.0 program, while running it in Visual Studio, I added a new html file named tryit.htm.
Then I replaced the DOCTYPE line with the following 2 lines and left the HTML tag in place. Next I pasted in your meta http-equiv line.
It works fine. It compiles. It remains there after closing Visual Studio. And its still there when I open Visual Studio.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0//EN"
"http://www.w3org/TR/REC-html40/strict.dtd">
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<TITLE></TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
However, I sure would NOT recommend using this file in anything running on the web.
Sandy
Sandy
|