Web-Development-with-Blazor.../Chapter10/MyBlog/BlazorWebAssembly/Client/JSInteropSamples/JSToStaticNET.razor
2023-02-17 15:28:17 +01:00

14 lines
371 B
Plaintext

@page "/jstostaticnetwasm"
@using System.Runtime.InteropServices.JavaScript
<h3>This is a demo how to call .NET from JavaScript</h3>
<button @onclick="ShowMessage">Show alert with message</button>
@code {
protected override async Task OnInitializedAsync()
{
await JSHost.ImportAsync("jstonet", "../JSInteropSamples/JSToStaticNET.razor.js");
}
}