验证动态生成的链接时出现问题
问题在于验证以下链接:
<link href="/WebResource.axd?d=iU6d9QgZtDnsqOJdmY0qJqVXyEU9Bc_DZHppuTGlpxU8YzwGet7OFPf9pflYz5SdwzuL1HVwxtSRZApovmcmRFW9P0ToSD3GFaTiOAqfOKHTYh7U0&t=634254225425826735" type="text/css" rel="stylesheet" />
这就是 w3c 发现错误的地方:
…UkrzqUngMzMpJmeFoz3FRJkFt3xFwsVmYNYc0&t=634254231258016859" type="text/css" re…
…krzqUngMzMpJmeFoz3FRJkFt3xFwsVmYNYc0&t=634254231258016859" type="text/css" rel…
在第一个链接中,它说“ t ”是问题,在第二个链接中,它说是“ = ”。
The problem is with validating the following link:
<link href="/WebResource.axd?d=iU6d9QgZtDnsqOJdmY0qJqVXyEU9Bc_DZHppuTGlpxU8YzwGet7OFPf9pflYz5SdwzuL1HVwxtSRZApovmcmRFW9P0ToSD3GFaTiOAqfOKHTYh7U0&t=634254225425826735" type="text/css" rel="stylesheet" />
and this is where w3c finds the error:
…UkrzqUngMzMpJmeFoz3FRJkFt3xFwsVmYNYc0&t=634254231258016859" type="text/css" re…
…krzqUngMzMpJmeFoz3FRJkFt3xFwsVmYNYc0&t=634254231258016859" type="text/css" rel…
in the first one its says that the " t " is the problem and in the second one it says its the " = ".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须逃脱&使用
&
。You have to escape & using
&
.您是否可以控制该链接,或者 ASP.NET 是否已将其添加到页面中?
我相信 W3C 验证器的真正问题是它希望您对 & 符号进行编码 (
& = &
)。Do you have control over the link, or is ASP.NET adding it to the page for you?
I believe the W3C validator's real problem is that it wants you to encode the ampersand (
& = &
).