Net4x.WebLibrary 1.0.1.26263

dotnet add package Net4x.WebLibrary --version 1.0.1.26263
                    
NuGet\Install-Package Net4x.WebLibrary -Version 1.0.1.26263
                    
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="Net4x.WebLibrary" Version="1.0.1.26263" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Net4x.WebLibrary" Version="1.0.1.26263" />
                    
Directory.Packages.props
<PackageReference Include="Net4x.WebLibrary" />
                    
Project file
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 Net4x.WebLibrary --version 1.0.1.26263
                    
#r "nuget: Net4x.WebLibrary, 1.0.1.26263"
                    
#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 Net4x.WebLibrary@1.0.1.26263
                    
#: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=Net4x.WebLibrary&version=1.0.1.26263
                    
Install as a Cake Addin
#tool nuget:?package=Net4x.WebLibrary&version=1.0.1.26263
                    
Install as a Cake Tool

Net4x.WebLibrary

An ASP.NET WebForms application framework: data-bound base pages, server controls, embedded-resource HTTP handlers and a table-metadata layer that drives list, search, detail and editing screens from a DataVisualization definition instead of hand-written markup.

Built on Net4x.DataAccessLibrary.

Install

dotnet add package Net4x.WebLibrary
Target frameworks net40, net45, net462
Assembly WebLibrary.dll, strong-named
Requires System.Web (ASP.NET WebForms, .NET Framework only)

What is in it

Namespace Contents
WebLibrary.Pages BasePage, DataPage, TableMainPage, TableDetailPage, SearchPage, AdvancedSearchPage, LoginPage, ChangePasswordPage, LookupPage, ExportCsvExcel, ImportFromTxt
WebLibrary.TableVisualization DataVisualization, FieldVisualization, MainGridColumn, LookupPageDefinition — the metadata the pages render from
WebLibrary.Controls ComboBox, EditableGridView, FrozenGridView, GridViewRadioButton, EditButtons, RowEditButtons, LookupButton, ImportCsvControl, MessageBoxControl, typed text boxes (DateTextBox, IntegerTextBox, FloatTextBox, …)
WebLibrary.HttpHandlers .axd handlers serving embedded JavaScript, CSS, images, downloads, Excel/CSV export, image resizing and the modal message/input boxes
WebLibrary.DataAccess WebDataBase (the ambient database facade), SqlCommandCreator, SqlDataSourceCreator, CGridViewExportUtil
WebLibrary.DataTableViewEdit DataTableRow, DataTableDefinition, PagingHelper — in-memory editing over a DataTable
WebLibrary.Utility ConfigurationReader, PageValueUtility, ControlFinder, GridViewHelper, MessageBoxRenderer, CommonAreaType
WebLibrary.Script JavascriptHelper, ScriptImpaginator — client-script emission and registration
WebLibrary.Security MenuFilter, PermissionHelper; Security.sql / SecurityOracle.sql ship as embedded schema scripts

DataPage also models a page as a Windows Form — DialogResult, remembered field and control values, and functions queued to run on the next post back.

Getting started

Derive your Global.asax from GlobalAsax and register the handlers, routes and the session module once at application start:

using WebLibrary;
using WebLibrary.HttpHandlers.Utility;

public class Global : GlobalAsax
{
    public override void Application_Start(object sender, EventArgs e)
    {
        base.Application_Start(sender, e);   // reads the configuration
        HandlerRegistrationUtility.InitRegistrations();
    }
}

InitRegistrations maps the built-in handlers (MessageBox.axd, InputBox.axd, JavaScript.axd, Css.axd, Download.axd, LookupPage.axd, ExportCsvExcel.axd, ResizeImage.axd, Ping.axd, …), installs the AssemblyResourceProvider so the embedded pages and assets resolve as virtual paths, and registers SessionEndModule.

Pages then derive from DataPage (or TableMainPage for a list screen) and describe their table through a DataVisualization; the base page builds the grid, the filters, the lookups and the editing commands from it.

Source

https://github.com/pieroviano/WebLibrary

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net10.0-windows was computed.  net10.0-windows7.0 is compatible. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1.26263 0 9/20/2026