我在 vb.net 后面的代码中添加了超链接。我想生成这样的链接 http://localhost:8010/CardExplorer.aspx?nc=2013+BC+100” target="_blank" >2013 BC 100 但是,我使用以下代码没有显示双引用。请有人告诉我正确的代码。提前致谢。
Dim searchlink As New HyperLink
searchlink.Text = cn
searchlink.Attributes.Add("href", ConfigurationManager.AppSettings("Search") & Server.UrlEncode(cn) & """" & " target=" & """" & "_blank")
e.Item.Cells(6).Controls.Add(searchlink)
我也使用 Chr(34) 而不是使用 """" ,结果与下面相同。
<a href="http://localhost:8010/CardExplorer.aspx?nc=2013+BC+2566" target="_blank">2013 BC 2566</a></td>