AzRUtil.Web.Mvc
10.2.0
dotnet add package AzRUtil.Web.Mvc --version 10.2.0
NuGet\Install-Package AzRUtil.Web.Mvc -Version 10.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AzRUtil.Web.Mvc" Version="10.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AzRUtil.Web.Mvc" Version="10.2.0" />
<PackageReference Include="AzRUtil.Web.Mvc" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AzRUtil.Web.Mvc --version 10.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AzRUtil.Web.Mvc, 10.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AzRUtil.Web.Mvc@10.2.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AzRUtil.Web.Mvc&version=10.2.0
#tool nuget:?package=AzRUtil.Web.Mvc&version=10.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AzRUtil.Web.Mvc
ASP.NET Core MVC utilities with Tag Helpers, HTML extensions, pagination, and base controller.
?? Installation
dotnet add package AzRUtil.Web.Mvc
Or via Package Manager:
Install-Package AzRUtil.Web.Mvc
?? Target Framework
- .NET 10
? Features
Tag Helpers
- DatePickerTagHelper - Date input with picker
- TimePickerTagHelper - Time input with picker
- DateRangePickerTagHelper - Date range selection
- DropDownTagHelper - Enhanced dropdown
- FileTagHelper - File upload helper
- ImageTagHelper - Responsive image helper
- PictureTagHelper - Picture element with sources
- RequiredLabelTagHelper - Labels with required indicator
- PlaceholderTagHelper - Dynamic placeholders
- BoolRadioButtonTagHelper - Yes/No radio buttons
- SelectRadioButtonTagHelper - Radio button lists
- DisplayForTagHelper - Display templates
- HtmlLabelTagHelper - Enhanced labels
Extensions
- HtmlHelperExtensions - Pagination controls
- SessionExtensions - Session management
- UrlHelperExtensions - URL generation
- WebHelperExtensions - General web utilities
Base Controller
- BaseController - Common MVC functionality
- Report Generation - RDLC report support
- Message Handling - Success/error messages
- Content Loading - AJAX content management
?? Dependencies
| Package | Version |
|---|---|
| AzRUtil.Web | 10.1.1 |
| X.PagedList.Mvc.Core | 10.5.9 |
?? Quick Start
Using Tag Helpers
In _ViewImports.cshtml:
@addTagHelper *, AzRUtil.Web.Mvc
In your views:
<input asp-for="BirthDate" azr-datepicker />
<select asp-for="CategoryId" azr-dropdown asp-items="Model.Categories" />
<input asp-for="Document" azr-file accept=".pdf,.doc" />
<label asp-for="Name" azr-required />
Pagination
@Html.PaginationFor(Model.Items, page => Url.Action("Index", new { page }))
@Html.PaginationFor(Model.Items, page => Url.Action("Index", new { page }), "contentDiv")
Base Controller Usage
using AzRUtil.Web.Mvc;
public class ProductController : BaseController
{
[HttpPost]
public IActionResult Create(ProductViewModel model)
{
var result = _service.Create(model);
return SuccessView(new SuccessModel
{
FeatureName = "Product",
NewId = result.Id,
IsAddContinue = false
});
}
}
?? Documentation
For full API documentation, visit: http://ashiquzzaman.me/project/AzRUtil.Mvc.Library
?? License
PROPRIETARY SOFTWARE - See LICENSE.txt
- ? You may use the compiled NuGet package
- ? You may NOT access, copy, or use source code
- ? No warranty or guarantee provided
- ? No liability accepted for any damages
?? Contact
For licensing inquiries: ashiquzzaman@outlook.com
� Ashiquzzaman. All Rights Reserved.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- AzRUtil.Web (>= 10.2.0)
- X.PagedList.Mvc.Core (>= 10.5.9)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
MVC utilities with Tag Helpers and pagination.