0

我正在使用 Razor 视图在 asp.net MVC 3 应用程序中工作。

我有字符串,我需要在其中添加一个链接,如下所示:

var closingMsg = "Thank you for submitting your dispute. If you wish, you may <a href='<%= Url.Action('Index', 'Product') %>purchase our SMS alert service</a> for immediate notification of any creditor response or request."; 

但它给出了错误。

请建议如何使用 href 或 HTML.actionLink 进行操作。我还需要将样式应用于链接。

4

1 回答 1

1

剃须刀使用@而不是<% %>

所以它会是这样的

<a href='@Url.Action('Index', 'Product')...

这是非常基础的,建议您学习一些初学者教程来熟悉基础知识。

于 2012-10-22T12:48:43.453 回答