diff --git a/MVCGridExample/Content/Site.css b/MVCGridExample/Content/Site.css index 6ea5d8f..f1928f6 100644 --- a/MVCGridExample/Content/Site.css +++ b/MVCGridExample/Content/Site.css @@ -22,3 +22,5 @@ select, textarea { max-width: 280px; } + + diff --git a/MVCGridExample/Controllers/DownloadController.cs b/MVCGridExample/Controllers/DownloadController.cs new file mode 100644 index 0000000..c46a644 --- /dev/null +++ b/MVCGridExample/Controllers/DownloadController.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace MVCGrid.Web.Controllers +{ + public class DownloadController : Controller + { + // GET: Download + public ActionResult Index() + { + return View(); + } + } +} \ No newline at end of file diff --git a/MVCGridExample/MVCGridExample.csproj b/MVCGridExample/MVCGridExample.csproj index 3a84fdb..eaeae47 100644 --- a/MVCGridExample/MVCGridExample.csproj +++ b/MVCGridExample/MVCGridExample.csproj @@ -151,6 +151,7 @@ + @@ -263,6 +264,7 @@ + diff --git a/MVCGridExample/Views/Download/Index.cshtml b/MVCGridExample/Views/Download/Index.cshtml new file mode 100644 index 0000000..ff2a166 --- /dev/null +++ b/MVCGridExample/Views/Download/Index.cshtml @@ -0,0 +1,37 @@ + +@section head{ + +} +@{ + ViewBag.Title = "Download"; +} + +

NuGet

+ +

Available from NuGet: https://www.nuget.org/packages/MVCGrid.Net

+ +
+

+ + PM> Install-Package MVCGrid.Net + +

+
+ +

Source

+

Source on GitHub: https://github.com/bigjoe714/MVCGrid.Net

\ No newline at end of file diff --git a/MVCGridExample/Views/Shared/_Layout.cshtml b/MVCGridExample/Views/Shared/_Layout.cshtml index be43c3e..d496efa 100644 --- a/MVCGridExample/Views/Shared/_Layout.cshtml +++ b/MVCGridExample/Views/Shared/_Layout.cshtml @@ -8,6 +8,7 @@ @Scripts.Render("~/bundles/modernizr") + @RenderSection("head", required: false)