我是否需要将 MetaTag http-equiv 与 DTD XHTML 1.0 Transitional//EN 一起使用?

发布于 2024-11-29 17:30:35 字数 329 浏览 0 评论 0原文

我使用ASP.net 在我的文档中,我使用:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

我想知道是否有必要添加此元标记:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 

感谢您对此的关注。

I use Asp.net
In my document I use:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

I would like to know if is necessary to add also this MetaTag:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 

Thanks for your tme on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

睫毛上残留的泪 2024-12-06 17:30:35

应该添加元标记,但这不是强制性的。

DOCTYPE 不会自动告诉您字符集是什么,因此您应该添加文件编码为 UTF-8 的信息。

您还应该确保 content-type HTTP 标头也设置为 UTF-8

You should add the meta tag, though it is not compulsory.

The DOCTYPE doesn't not automatically tell you what the character set is, so you should add the information that the file is encoded as UTF-8.

You should also ensure the content-type HTTP header is also set to UTF-8.

别忘他 2024-12-06 17:30:35

文档类型定义

文档类型声明应该是 HTML 文档中的第一件事,
标记之前。

doctype 声明不是 HTML 标记;这是对网络的指令
浏览器了解该页面所使用的标记语言版本。

doctype 声明是指文档类型定义 (DTD)。 DTD
指定标记语言的规则,以便浏览器呈现
内容正确。

请参阅参考:

http://www.w3.org/QA/Tips/Doctype

http://www.w3.org/TR/html4/struct/global.html

字符编码

XML 和 HTML 4.0 的文档字符集是 Unicode(又名 ISO 10646)。
这意味着 HTML 浏览器和 XML 处理器的行为应该像它们一样
内部使用 Unicode。但这并不意味着文件必须
以 Unicode 传输。只要客户端和服务器同意编码,
他们可以使用任何可以转换为 Unicode 的编码。阅读更多关于
文档字符集。

任何 XML 或 (X)HTML 文档的字符编码都非常重要
都有明确的标记,以便客户端可以轻松地将这些编码映射到 Unicode。
这可以通过以下方式完成...

请参阅参考资料 http://www.w3.org /International/O-charset

两者都是必要的,但并不相互依赖。

Doctype Definition

The doctype declaration should be the very first thing in an HTML document,
before the <html> tag.

The doctype declaration is not an HTML tag; it is an instruction to the web
browser about what version of the markup language the page is written in.

The doctype declaration refers to a Document Type Definition (DTD). The DTD
specifies the rules for the markup language, so that the browsers render the
content correctly.

See the reference:

http://www.w3.org/QA/Tips/Doctype

http://www.w3.org/TR/html4/struct/global.html

Character Encoding

The document character set for XML and HTML 4.0 is Unicode (aka ISO 10646).
This means that HTML browsers and XML processors should behave as if they
used Unicode internally. But it doesn't mean that documents have to be
transmitted in Unicode. As long as client and server agree on the encoding,
they can use any encoding that can be converted to Unicode. Read more about
the document character set.

It is very important that the character encoding of any XML or (X)HTML document
is clearly labeled, so that clients can easily map these encodings to Unicode.
This can be done in the following ways...

See The Reference http://www.w3.org/International/O-charset

Both are necessary, but not dependent to each other.

你与昨日 2024-12-06 17:30:35

是的,添加这一点完全没问题,只需确保文件扩展名具有 .aspx 或附加的任何内容即可。

带有 html 的 ASP 页面示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<body bgcolor="black">
<center>
<h2>Hello There!</h2>
<p><%Response.Write(now())%></p>
</center>
</body>
</html>

希望这会有所帮助。

Yes this is perfectly fine to add that just make sure the file extension has .aspx or whatever attached to it.

Example ASP page with html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<body bgcolor="black">
<center>
<h2>Hello There!</h2>
<p><%Response.Write(now())%></p>
</center>
</body>
</html>

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文