Blazor.WebForm.Components 2.4.1.3

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

// Install Blazor.WebForm.Components as a Cake Tool
#tool nuget:?package=Blazor.WebForm.Components&version=2.4.1.3                

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>
    <asp.Button Text="Load Data" OnClick="this.Button_Click"></asp.Button>
    <hr />
    <asp.Label @ref="this.label"></asp.Label>
    <br />
    <asp.GridView @ref="this.gridview" AutoGenerateColumns="false" CssClass="table" AllowPaging="true"
                  PageSize="2" OnPageIndexChanging="this.GridView_PageIndexChanging">
        <Columns>
            <asp.BoundField HeaderText="Date" DataField="Date" DataFormatString="{0:yyyy/M/d}"></asp.BoundField>
            <asp.BoundField HeaderText="Temp. (C)" DataField="TemperatureC"></asp.BoundField>
            <asp.BoundField HeaderText="Temp. (F)" DataField="TemperatureF"></asp.BoundField>
            <asp.BoundField HeaderText="Summary" DataField="Summary"></asp.BoundField>
        </Columns>
    </asp.GridView>
</div>

@code {
    private WeatherForecast[] forecasts;
    private Label label;
    private GridView 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.RequestRefresh();
    }

    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. 
.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

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
2.4.1.3 222 10/5/2024
2.4.1.2 369 8/18/2024
2.4.1.1 206 7/20/2024
2.4.1 329 5/8/2024
2.4.0.9 332 4/17/2024
2.4.0.8 165 4/14/2024
2.4.0.7 136 4/2/2024
2.4.0.6 136 4/1/2024
2.4.0.4 124 3/28/2024
2.4.0.3 190 3/13/2024
2.4.0.2 151 3/2/2024
2.4.0.1 353 12/9/2023
2.4.0 216 11/16/2023
2.3.2.4 95 5/8/2024
2.3.2.3 152 4/17/2024
2.3.2.2 105 4/14/2024
2.3.2.1 98 4/2/2024
2.3.2 97 4/1/2024
2.3.1.8 127 3/28/2024
2.3.1.7 137 3/13/2024
2.3.1.6 133 3/2/2024
2.3.1.5 145 12/9/2023
2.3.1.4 138 11/16/2023
2.3.1.3 255 10/13/2023
2.3.1.2 431 7/12/2023
2.3.1.1 211 7/9/2023
2.3.1 321 5/1/2023
2.3.0.9 276 4/12/2023
2.3.0.8 236 4/4/2023
2.3.0.7 231 3/27/2023
2.3.0.6 356 2/3/2023
2.3.0.5 339 1/7/2023
2.3.0.4 338 12/15/2022
2.3.0.3 391 11/25/2022
2.3.0.1 368 11/11/2022
2.2.3.5 104 10/5/2024
2.2.3.4 127 8/18/2024
2.2.3.3 102 7/20/2024
2.2.3.2 94 5/8/2024
2.2.3.1 119 4/17/2024
2.2.3 99 4/14/2024
2.2.2.9 102 4/2/2024
2.2.2.8 133 4/1/2024
2.2.2.6 115 3/28/2024
2.2.2.5 118 3/13/2024
2.2.2.4 119 3/2/2024
2.2.2.3 147 12/9/2023
2.2.2.2 117 11/16/2023
2.2.2.1 701 10/13/2023
2.2.2 184 7/12/2023
2.2.1.9 176 7/9/2023
2.2.1.8 189 5/1/2023
2.2.1.7 200 4/12/2023
2.2.1.6 207 4/4/2023
2.2.1.5 209 3/27/2023
2.2.1.4 282 2/3/2023
2.2.1.3 359 1/7/2023
2.2.1.2 299 12/15/2022
2.2.1.1 340 11/25/2022
2.2.0.9 351 11/11/2022
2.2.0.7 384 10/23/2022
2.2.0.6 403 10/21/2022
2.2.0.5 435 10/11/2022
2.2.0.4 483 9/23/2022
2.2.0.3 449 9/2/2022
2.2.0.2 602 6/25/2022
2.2.0.1 471 6/23/2022
2.0.1.6 437 6/19/2022
2.0.1.5 469 5/30/2022
2.0.1.4 480 5/21/2022
2.0.1.3 491 4/14/2022
2.0.1.2 466 4/5/2022
2.0.1.1 450 4/2/2022
2.0.1 494 3/18/2022
2.0.0.9 520 2/22/2022
2.0.0.8 470 2/1/2022
2.0.0.7 471 1/25/2022
2.0.0.6 333 1/2/2022
2.0.0.5 298 12/28/2021
2.0.0.4 281 12/21/2021
2.0.0.3 304 12/13/2021
2.0.0.1 339 11/23/2021
2.0.0 386 11/10/2021
1.2.2.8 507 6/19/2022
1.2.2.7 444 5/30/2022
1.2.2.6 428 5/21/2022
1.2.2.5 471 4/14/2022
1.2.2.4 439 4/5/2022
1.2.2.3 444 4/2/2022
1.2.2.2 447 3/18/2022
1.2.2.1 455 2/22/2022
1.2.2 465 2/1/2022
1.2.1.9 512 1/25/2022
1.2.1.8 315 1/2/2022
1.2.1.7 303 12/28/2021
1.2.1.6 284 12/21/2021
1.2.1.5 301 12/13/2021
1.2.1.3 345 11/23/2021
1.2.1.2 336 11/10/2021
1.2.1.1 374 11/5/2021
1.2.1 369 10/13/2021
1.2.0.8 464 10/9/2021
1.2.0.6 383 10/6/2021
1.2.0.5 322 10/1/2021
1.2.0.3 419 9/26/2021
1.2.0.2 420 9/25/2021
1.2.0.1 357 9/22/2021
1.1.9.9 468 9/10/2021
1.1.9.8 342 9/7/2021
1.1.9.7 358 9/3/2021
1.1.9.6 368 9/2/2021
1.1.9.5 366 8/31/2021
1.1.9.2 344 8/30/2021
1.1.9.1 449 8/28/2021
1.1.8.9 373 8/23/2021
1.1.8.8 392 8/22/2021
1.1.8.6 370 8/21/2021
1.1.8.5 380 8/19/2021
1.1.8.4 383 8/18/2021
1.1.8.3 353 8/18/2021
1.1.8.2 336 8/17/2021
1.1.8 362 8/16/2021
1.1.7.8 361 8/16/2021
1.1.7.5 449 8/14/2021
1.1.7.3 359 8/13/2021
1.1.7.2 363 8/13/2021
1.1.7 409 8/10/2021
1.1.6.8 355 8/4/2021
1.1.6.7 507 7/31/2021