mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 05:34:48 +00:00
21 lines
555 B
Plaintext
21 lines
555 B
Plaintext
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Home</title>
|
|
</head>
|
|
<body>
|
|
<h3>Hello from ASP.NET Core MVC!</h3>
|
|
|
|
We are using node
|
|
<script>document.write(process.versions.node)</script>,
|
|
Chrome
|
|
<script>document.write(process.versions.chrome)</script>,
|
|
and Electron
|
|
<script>document.write(process.versions.electron)</script>.
|
|
<br /><br />
|
|
<input type="button" value="Call Notification" onclick="location.href='@Url.Action("SayHello", "Home")'" />
|
|
</body>
|
|
</html>
|