我想返回一种内容类型,但内容中有一个 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 > ");}
1 回答
- 1 回答
- 0 关注
- 169 浏览
添加回答
举报
0/150
提交
取消