将链接替换为重叠链接

时间:2018-02-09 08:48:18

标签: c# php html asp.net-mvc

我必须将注释中的字符串替换为重叠链接。 PHP中的代码:

$comment = str_replace('[%account]','<a href="'.$doc_root.'/basket/?idsession='.$idsession.'">account</a>',$comment);

我需要在C#中使用相同的东西,最终在HTML中,因为是ASP.NET MVC应用程序。我知道有一个名为Replace的方法(字符串OldValue,字符串NewValue),但我相信它只适用于字符串类型,而不适用于链接。还是我错了?有任何想法吗? 我想用类属性这样做:

 public string AccountLink { get { return "account"; }  }

然后:

parcel.Comment = parcelStatus.Comment.Replace("[%account]", parcel.AccountLink)

但我不知道如何连接“#34; account&#34;使用上面PHP代码中的链接。

0 个答案:

没有答案