我想返回一种内容类型,但内容中有一个 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 > ");
}
相关分类