如何添加单词的链接?

时间:2017-09-25 03:08:47

标签: c# asp.net

我想在" here"中添加一个链接使用C#webform.aspx.cs页面,所以不起作用。

EG。 "密码已过期。请点击此处重置密码。"

我可以点击"这里"然后将重定向。

errMsg.InnerText= "The password has expired. Please click here to reset your 
password.";

1 个答案:

答案 0 :(得分:0)

errMsg.InnerHtml= "The password has expired. Please click <a href='$your url$' >here</a> to reset your password.";

代替$your url$输入重置密码页的网址。