mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
14 lines
371 B
Plaintext
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");
|
||
|
|
}
|
||
|
|
}
|