内容简介:版权声明:本文为博主原屙文章,喜欢你就担走。 https://blog.csdn.net/leftfist/article/details/83212369
版权声明:本文为博主原屙文章,喜欢你就担走。 https://blog.csdn.net/leftfist/article/details/83212369
其实, asp.net mvc 里的Url.Action与Url.RenderAction,这根本就是两个不同类的东西,不能相提并论。唯一有联系的,就是都跟action有关。记录下来,主要是做个备忘录。
1、Url.Action()
其实就是输出一个链接。可以传参数
<a href="@Url.Action("Main",new { id = Model.ID})">任务明细</a>
输出到网页就是:
<a href="/YbjzHpm.Web/Business/Task/Main/13">任务明细</a>
对应的action代码:
public ActionResult Main(long id) { return View(); }
2、Url.RenderAction()
输出该Action所对应的视图。也可以传参数
@model Task <div> @{ Html.RenderAction("Main2", new { model = Model}); } </div>
public ActionResult Main2(Task model) { return View("Main",model); }
以上所述就是小编给大家介绍的《asp.net mvc 里的Url.Action与Url.RenderAction》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Blog Design Solutions
Richard Rutter、Andy Budd、Simon Collison、Chris J Davis、Michael Heilemann、Phil Sherry、David Powers、John Oxton / friendsofED / 2006-2-16 / USD 39.99
Blogging has moved rapidly from being a craze to become a core feature of the Internetfrom individuals sharing their thoughts with the world via online diaries, through fans talking about their favori......一起来看看 《Blog Design Solutions》 这本书的介绍吧!
RGB HSV 转换
RGB HSV 互转工具
HEX CMYK 转换工具
HEX CMYK 互转工具