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
- ModuleNotFounEerror:No module named celery in Django Project
- How to get domain name information from a Domain using Python
- ModulenotFoundError: no module named 'debug_toolbar' -SOLUTION
- How to create superuser in django project hosted in cPanel without terminal
- CSS & images not loading in django admin | cpanel without terminal
- Could not build wheels for mysqlclient, which is required to install pyproject.toml-based projects
- How to sell domain name on Godaddy (2023)
- TemplateSyntaxError at / Could not parse the remainder: ' + 1' from 'forloop.counter0 + 1'
Related Article