As far as I know, this is just a quirk (bug?) With ASP.NET rendering.
I stumbled upon this a while ago and found this fix here: Strange blank space in the title tag . If this bothers you, just paste this into your page code to fix it:
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
source share