猿问

如何从返回类型为“内容”的 MVC 控制器返回链接

我想返回一种内容类型,但内容中有一个 URL。下面是我的代码。


public ActionResult Safari() {

    return Content("<html>Click this URL <a href ="https://www.google.com/chrome"</html>");

}

我希望将链接Google.com呈现为超链接而不是文本。出于某种原因,我不想返回 view.cshtml 页面。


尝试:


return Content("<html>Click this URL <a href ="https://www.google.com/chrome"</html>");

return Content(@"<html>Click this URL <a href ="https://www.google.com/chrome"</html>");

return Content("<html>Click this URL <a href =/"https://www.google.com/chrome/"</html>");

其他尝试:


public ActionResult Safari() {

    return Content("< a href = 'google.com/chrome' > Click this URL </ a > ");

}

潇湘沐
浏览 170回答 1
1回答
随时随地看视频慕课网APP
我要回答