Blazor.WebForm.UI 2.5.0.5

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

Demo: https://blazorwebformdemo.github.io/

@using System.Web.UI
@using System.Web.UI.WebControls
@page "/fetchdata-gridview"
@inherits ControlComponent
@inject HttpClient Http

<div>
    <h1>Weather forecast (GridView)</h1>
    @this.Render(button)
    <hr />
    @this.Render(label)
    <br />
    @this.Render(gridview)
</div>

@code {
    private WeatherForecast[] forecasts;
    private Button button;
    private Label label;
    private GridView gridview;

    protected override void OnInitialized()
    {
        button = new Button();
        button.Text = "Load Data";
        button.Click += Button_Click;
        this.Controls.Add(button);

        label = new Label();
        this.Controls.Add(label);

        gridview = new GridView();
        gridview.CssClass = "table";
        gridview.AllowPaging = true;
        gridview.PageSize = 2;
        gridview.PageIndexChanging += GridView_PageIndexChanging;
        this.Controls.Add(gridview);
    }

    protected async void Button_Click(object sender, EventArgs e)
    {
        forecasts = await Http.GetFromJsonAsync<WeatherForecast[]>("sample-data/weather.json");

        label.Text = DateTime.Now.ToString();

        gridview.PageIndex = 0;
        gridview.DataSource = forecasts;
        gridview.DataBind();

        this.StateHasChanged();
    }

    protected void GridView_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        gridview.PageIndex = e.NewPageIndex;
        gridview.DataBind();
    }

    public class WeatherForecast
    {
        public DateTime Date { get; set; }

        public int TemperatureC { get; set; }

        public string Summary { get; set; }

        public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Blazor.WebForm.UI:

Package Downloads
Blazor.WebForm.Components

ASP.NET Web Forms System.Web.UI.WebControls Razor Components For Blazor WebAssembly, Blazor Hybrid, Blazor Server.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.5.0.5 184 5/3/2025
2.5.0.4 211 4/5/2025
2.5.0.3 255 2/15/2025
2.5.0.2 165 2/8/2025
2.5.0.1 169 2/1/2025
2.4.1.8 110 5/3/2025
2.4.1.7 151 4/5/2025
2.4.1.6 143 2/15/2025
2.4.1.5 147 2/8/2025
2.4.1.4 150 2/1/2025
2.4.1.3 2,639 10/5/2024
2.4.1.2 581 8/18/2024
2.4.1.1 425 7/20/2024
2.4.1 645 5/8/2024
2.4.0.9 447 4/17/2024
2.4.0.8 250 4/14/2024
2.4.0.7 224 4/2/2024
2.4.0.6 188 4/1/2024
2.4.0.4 178 3/28/2024
2.4.0.3 288 3/13/2024
2.4.0.2 277 3/2/2024
2.4.0.1 505 12/9/2023
2.4.0 414 11/16/2023
2.3.2.4 161 5/8/2024
2.3.2.3 222 4/17/2024
2.3.2.2 206 4/14/2024
2.3.2.1 167 4/2/2024
2.3.2 177 4/1/2024
2.3.1.8 222 3/28/2024
2.3.1.7 208 3/13/2024
2.3.1.6 205 3/2/2024
2.3.1.5 218 12/9/2023
2.3.1.4 187 11/16/2023
2.3.1.3 363 10/13/2023
2.3.1.2 698 7/12/2023
2.3.1.1 300 7/9/2023
2.3.1 511 5/1/2023
2.3.0.9 415 4/12/2023
2.3.0.8 362 4/4/2023
2.3.0.7 400 3/27/2023
2.3.0.6 658 2/3/2023
2.3.0.5 589 1/7/2023
2.3.0.4 704 12/15/2022
2.3.0.3 1,710 11/25/2022
2.3.0.1 646 11/11/2022
2.2.3.5 159 10/5/2024
2.2.3.4 193 8/18/2024
2.2.3.3 164 7/20/2024
2.2.3.2 172 5/8/2024
2.2.3.1 210 4/17/2024
2.2.3 190 4/14/2024
2.2.2.9 168 4/2/2024
2.2.2.8 199 4/1/2024
2.2.2.6 187 3/28/2024
2.2.2.5 209 3/13/2024
2.2.2.4 196 3/2/2024
2.2.2.3 210 12/9/2023
2.2.2.2 187 11/16/2023
2.2.2.1 783 10/13/2023
2.2.2 284 7/12/2023
2.2.1.9 262 7/9/2023
2.2.1.8 318 5/1/2023
2.2.1.7 312 4/12/2023
2.2.1.6 325 4/4/2023
2.2.1.5 372 3/27/2023
2.2.1.4 476 2/3/2023
2.2.1.3 603 1/7/2023
2.2.1.2 678 12/15/2022
2.2.1.1 586 11/25/2022
2.2.0.9 911 11/11/2022
2.2.0.7 943 10/23/2022
2.2.0.6 683 10/21/2022
2.2.0.5 755 10/11/2022
2.2.0.4 788 9/23/2022
2.2.0.3 806 9/2/2022
2.2.0.2 1,009 6/25/2022
2.2.0.1 816 6/23/2022
2.0.1.6 809 6/19/2022
2.0.1.5 860 5/30/2022
2.0.1.4 850 5/21/2022
2.0.1.3 910 4/14/2022
2.0.1.2 819 4/5/2022
2.0.1.1 825 4/2/2022
2.0.1 940 3/18/2022
2.0.0.9 889 2/22/2022
2.0.0.8 836 2/1/2022
2.0.0.7 835 1/25/2022
2.0.0.6 576 1/2/2022
2.0.0.5 507 12/28/2021
2.0.0.4 526 12/21/2021
2.0.0.3 527 12/13/2021
2.0.0.1 580 11/23/2021
2.0.0 815 11/10/2021
1.2.2.8 855 6/19/2022
1.2.2.7 800 5/30/2022
1.2.2.6 773 5/21/2022
1.2.2.5 842 4/14/2022
1.2.2.4 801 4/5/2022
1.2.2.3 808 4/2/2022
1.2.2.2 793 3/18/2022
1.2.2.1 822 2/22/2022
1.2.2 849 2/1/2022
1.2.1.9 860 1/25/2022
1.2.1.8 532 1/2/2022
1.2.1.7 508 12/28/2021
1.2.1.6 481 12/21/2021
1.2.1.5 495 12/13/2021
1.2.1.3 547 11/23/2021
1.2.1.2 553 11/10/2021
1.2.1.1 578 11/5/2021
1.2.1 652 10/13/2021
1.2.0.8 715 10/9/2021
1.2.0.6 642 10/6/2021
1.2.0.5 586 10/1/2021
1.2.0.3 665 9/26/2021
1.2.0.2 672 9/25/2021
1.2.0.1 596 9/22/2021
1.1.9.9 719 9/10/2021
1.1.9.8 609 9/7/2021
1.1.9.7 5,101 9/3/2021
1.1.9.6 615 9/2/2021
1.1.9.5 608 8/31/2021
1.1.9.2 612 8/30/2021
1.1.9.1 718 8/28/2021
1.1.8.9 638 8/23/2021
1.1.8.8 644 8/22/2021
1.1.8.6 616 8/21/2021
1.1.8.5 613 8/19/2021
1.1.8.4 617 8/18/2021
1.1.8.3 591 8/18/2021
1.1.8.2 582 8/17/2021
1.1.8 603 8/16/2021
1.1.7.8 630 8/16/2021
1.1.7.5 706 8/14/2021
1.1.7.3 590 8/13/2021
1.1.7.2 591 8/13/2021
1.1.7 647 8/10/2021
1.1.6.8 626 8/4/2021
1.1.6.7 693 7/30/2021
1.1.6.6 526 7/29/2021
1.1.6.5 462 7/28/2021
1.1.6.4 482 7/26/2021
1.1.6.3 497 7/23/2021
1.1.6.2 457 7/20/2021
1.1.6.1 519 7/18/2021
1.1.5.9 466 7/17/2021
1.1.5.7 461 7/14/2021
1.1.5.6 502 7/8/2021
1.1.5.5 481 7/5/2021
1.1.5.4 458 7/4/2021
1.1.5.2 483 7/2/2021
1.1.4.8 470 6/30/2021
1.1.3.6 496 6/14/2021
1.1.3.5 550 6/10/2021
1.1.3.2 506 5/27/2021