mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
17 lines
489 B
Plaintext
17 lines
489 B
Plaintext
@page "/jstostaticnet"
|
|
|
|
<h3>This is a demo how to call .NET from JavaScript</h3>
|
|
|
|
@*
|
|
Note that we are using the JavaScript onclick parameter not the @onclick
|
|
The JavaScript file JSToStaticNET.js is included in the _layout/index page.
|
|
*@
|
|
<button onclick="callnetfromjs()">Show alert with message</button>
|
|
@code {
|
|
[JSInvokable("NameOfTheMethod")]
|
|
public static Task<string> GetAMessageFromNET()
|
|
{
|
|
return Task.FromResult("This is a message from .NET");
|
|
}
|
|
}
|