I have created Helper file that is not accessible from App_Code folder and also HtmlHelper is getting null while running. It was resolved by get helpers from the PageContext.
Creating Helper File:
public static MvcHtmlString GetExternalProfile(this HtmlHelper helper, int? userId)
{
models db = new models();
UserLogin userlogin =db.UserLogins.Find(userId);
string externalProfile =userlogin.DevName;
if (externalProfile == null)
{
externalProfile = "WebMaster";
}
return MvcHtmlString.Create(externalProfile.ToString());
}
View file in App_Code folder:
@using System.Web.Mvc.Html;
@using System.Web.Mvc
@helper SimpleHelper(int UserId)
{
var page = (WebViewPage)PageContext.Page;
var Html = page.Html;
@Html.GetExternalProfile(UserId);
}
Post your comments / questions
Recent Article
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
- Insert excel file data into MySQL database in Python
- ImportError: Missing optional dependency 'xlrd' | How tot Convert xls to xlsx | Python
Related Article