如何在 asp.net 个项目上使用 html 标签
how to using html tags on asp.net projects
我正在尝试在我的 asp.net 项目中使用视口
使用此标签
<asp:HtmlMeta runat="server" ID="viewPort" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
我遇到了这个错误
Parser Error
Description: An error occurred during the parsing of a resource
required to service this request.
Please review the following specific parse error details and modify
your source file appropriately.
Parser Error Message:
Unknown server tag 'asp:HtmlMeta'.
有什么解决办法吗?
the HtmlMeta
class 似乎不是这样使用的。
对于初学者来说,如果您不需要编程访问而只需要一个 <meta>
元素,那么只需使用一个:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
也就是说,除非您需要从您的服务器端代码与之交互,否则没有理由让它过于复杂。正常使用HTML即可。
另一方面,如果您 需要编程访问(例如根据某些条件动态设置 content
),您将使用 HtmlMeta
class 在您的服务器端代码中。例如:
protected void Page_Load(object sender, EventArgs e)
{
HtmlMeta viewport = new HtmlMeta();
viewport.Name = "viewport";
viewport.Content = "width=device-width, initial-scale=1.0, maximum-scale=1.0";
HtmlHead header = (HtmlHead)Page.Header;
header.Controls.Add(viewport);
}
我正在尝试在我的 asp.net 项目中使用视口 使用此标签
<asp:HtmlMeta runat="server" ID="viewPort" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
我遇到了这个错误
Parser Error
Description: An error occurred during the parsing of a resource required to service this request.
Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message:
Unknown server tag 'asp:HtmlMeta'.
有什么解决办法吗?
the HtmlMeta
class 似乎不是这样使用的。
对于初学者来说,如果您不需要编程访问而只需要一个 <meta>
元素,那么只需使用一个:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
也就是说,除非您需要从您的服务器端代码与之交互,否则没有理由让它过于复杂。正常使用HTML即可。
另一方面,如果您 需要编程访问(例如根据某些条件动态设置 content
),您将使用 HtmlMeta
class 在您的服务器端代码中。例如:
protected void Page_Load(object sender, EventArgs e)
{
HtmlMeta viewport = new HtmlMeta();
viewport.Name = "viewport";
viewport.Content = "width=device-width, initial-scale=1.0, maximum-scale=1.0";
HtmlHead header = (HtmlHead)Page.Header;
header.Controls.Add(viewport);
}