0
Posted on 2:02 AM by Softminer and filed under
MVC
public static void InfoButton(this HtmlHelper helper, string id, string description) { var response = helper.ViewContext.HttpContext.Response; System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(helper, "_partial", new ViewDataDictionary { { "id", id }, { "descr", description } }); }
Post a Comment