gpt4 book ai didi

.net - 如何在我的 Html Helper 中调用 RenderAction?

转载 作者:行者123 更新时间:2023-12-04 06:58:10 26 4
gpt4 key购买 nike

我正在扩展 htmlhelper。但我不能调用它的渲染 Action 。

 using System.Text;
using System.Web.Mvc;
using System.Web.Mvc.Html;
public static class ViewHelpers
{
public static string Text(this HtmlHelper htmlHelper, string name, object value, bool isEditMode)
{
htmlHelper.RenderAction(...) //cannot be called
}
}

我如何调用 RenderAction ???

最佳答案

CoffeeCode 走在正确的轨道上,但要包含的命名空间应该是 System.Web , System.Web.Mvc System.Web.Mvc.Html .

using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using System.Resources;
using System.Web.Routing;
using System.Text.RegularExpressions;

namespace xxx.yyy.Helpers {
public static class HelperView {
public static void RenderHeader(this HtmlHelper helper) {
helper.RenderAction("Header", "Default", new { pageAction = helper.ViewContext.RouteData.Values["action"].ToString() });
}
}
}

http://msdn.microsoft.com/en-us/library/ee703490(v=vs.108).aspx

关于.net - 如何在我的 Html Helper 中调用 RenderAction?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2285344/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com