A collection of helpers for ASP.NET MVC5.
Converts any URLs in the input to absolute using the application's base directory.
The standard CssRewriteUrlTransform
class doesn't use the application's absolute path required
by many assets.
For example, url(../fonts/glyphicons.woff)
is rewritten as
url(Contoso/Content/fonts/glyphicons.woff)
for an application whose base directory is Contoso.
.Include("~/Content/css/bootstrap.min.css", new CssRewriteUrlTransformAbsolute())
When building static navigation, there are two approaches to highlight the link of the current page
as active. Either you can run some JavaScript to sniff out the URLs or you can build out an if
statement
for every link to determine whether or not to apply the class.
To make the second option easier, you can turn this:
<li class="@(ViewContext.RouteData.Values["Action"].ToString() == nameof(HomeController.Index) ? "active" : "")">
<a href="@Url.Action("Index", "Home")"><i class="fa fa-link"></i> <span>Home</span></a>
</li>
into this:
<li class="@Url.IsLinkActive("Index", "Home")">
<a href="@Url.Action("Index", "Home")"><i class="fa fa-link"></i> <span>Home</span></a>
</li>
Similar to IsLinkActive
, this makes it easy to determine whether the treeview is the active link.
@{
var treeviewActions = new Dictionary<string, string>
{
{ "Action", "Controller" }
};
}
<li class="treeview @Url.IsTreeviewActive(treeviewActions)">
<a href="#"><i class="fa fa-cogs"></i> <span>Action</span> <i class="fa fa-angle-left pull-right"></i></a>
<ul class="treeview-menu">
<li class="@Url.IsLinkActive("Action", "Controller")">
<a href="@Url.Action("Action", "Controller")"><i class="fa fa-trash"></i> <span>Action</span></a>
</li>
</ul>
</li>
Adds a cache-busting version number, which is the number of ticks since the last write time of the file, as a query parameter to the URL of the asset.
<img src="@Url.Content("~/Content/img/user.png").AddVersion()" />
outputs
/Content/img/user.png?v=636296810982047488
Renders Enums as a frozen object in JavaScript to promote re-usability between the server and client.
Add to your Web.config:
<system.webServer>
<handlers>
<remove name="WebHelpers" />
<add name="WebHelpers" verb="GET" path="WebHelpers.axd" type="WebHelpers.Mvc5.Enum.EnumHandler" preCondition="integratedMode" />
</handlers>
</system.webServer>
Add to your _Layout.cshtml:
<script src="@EnumHandler.HandlerUrl"></script>
Then decorate your enum with the ExposeInJavaScript
attribute:
[ExposeInJavaScript]
public enum MyEnum
{
Test
}
Alternatively, you can specify the enums to include and exclude via configuration.
This is helpful if you choose to keep your enums clean or if they reside in other
libraries that can't take on this dependency. To do this, you can register them in
your Global.asax
.
protected void Application_Start()
{
EnumHandler.EnumsToExpose.Include(typeof(MyEnum));
}
Gets the IP address of the client sending the request. This method will return the originating IP if specified by a proxy but makes no guarantee that this is the client's true IP address. Since these headers can be spoofed, you are encouraged to perform additional validation if you are using the IP in a sensitive context.
var ip = HttpContext.Current.Request.ClientIP();
jqGrid is not licensed under the MIT license like this project. See here for its license. It is only included in the Demo project for the purposes of demonstration in a non-commercial capacity.