gpt4 book ai didi

asp.net - 删除 ASP.NET HTML 页面标题中的多余空格?

转载 作者:行者123 更新时间:2023-12-02 16:25:30 25 4
gpt4 key购买 nike

我有一个问题。

我使用 VB.NET 将页面的标题值指定为 page.title = "a"但是当我运行页面并查看页面 View 源时,我发现它显示为 <title> a </title>

问题是我想删除标题标签之间的所有空格,它显示如下 <title>a</title>

提前致谢!

最佳答案

据我所知,这只是 ASP.NET 渲染的一个怪癖(bug?)。

不久前我自己也遇到过这个问题,并在这里找到了这个修复:Weird white space in title tag 。如果它让您烦恼,只需将其粘贴到页面代码中即可修复它:

Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)

Dim stringWriter As New System.IO.StringWriter()
Dim htmlWriter As New HtmlTextWriter(stringWriter)
MyBase.Render(htmlWriter)
Dim html As String = stringWriter.ToString()
Dim t1 As Integer = html.IndexOf("<title>")
Dim t2 As Integer = html.IndexOf("</title>") + 8
Dim newTitleTag As String = html.Substring(t1, t2 - t1)
html = html.Replace(newTitleTag, String.Format("<title>{0}</title>", Me.Title))

writer.Write(html)

End Sub

关于asp.net - 删除 ASP.NET HTML 页面标题中的多余空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5577121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com