asp.net中的语法html+;运动模拟

asp.net中的语法html+;运动模拟,asp.net,html,vb.net,Asp.net,Html,Vb.net,这是我的密码 Dim verifyUrl As String = Request.Url.GetLeftPart(UriPartial.Authority) & Page.ResolveUrl("~/verify.aspx?ID=" & sGUID) mail.Body = "<html>" & _ "<head>" & _ "<meta http-equ

这是我的密码

    Dim verifyUrl As String = Request.Url.GetLeftPart(UriPartial.Authority) & Page.ResolveUrl("~/verify.aspx?ID=" & sGUID)
    mail.Body = "<html>" & _
                "<head>" & _
                "<meta http-equiv=""Content-Language"" content=""fr"">" & _
                "<meta http-equiv=""Content-Type"" content=""text/html; charset=windows-1252"">" & _
                "</head>" & _
                "<body>" & _
                " <p>Hello, <%UserName%>. You are receiving this email because you recently created a new account at my" & _
                "site. Before you can login, however, you need to first visit the following link:</p>" & _
                "<p> //////Here put an href whit the value verifyUrl ///// </p>" & _
                "</body>" & _
                "</html>"
                mail.Body = mail.Body.Replace("<%VerifyUrl%>", verifyUrl)
                mail.Body = mail.Body.Replace("<%UserName%>", nom)


      Try for long time to put an like <a href"<%verifyUrl%>"</a> but this not work well................
Dim verifyUrl As String=Request.Url.GetLeftPart(UriPartial.Authority)和Page.ResolveUrl(“~/verify.aspx?ID=“&sGUID”)
mail.Body=”“&_
"" & _
"" & _
"" & _
"" & _
"" & _
“您好,。您收到此电子邮件是因为您最近在我的”&_
“站点。但是,在登录之前,您需要先访问以下链接:

”&_ “/////Here放置一个href,其值为verifyUrl////

”&_ "" & _ "" mail.Body=mail.Body.Replace(“,verifyUrl) mail.Body=mail.Body.Replace(“,nom) 尝试长时间放置一个like,但效果不好。。。。。。。。。。。。。。。。
请帮我输入这个简单的html行

提前谢谢

您可以使用:

<a href='<%VerifyUrl%>'>Click Here</a>


这样做时的输出是什么<代码>非常感谢这是一项工作,要找到真正的语法并不容易!!