-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx
More file actions
21 lines (13 loc) · 974 Bytes
/
Default.aspx
File metadata and controls
21 lines (13 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebFormVueExample._Default" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div class="jumbotron">
<h1>VUE Examples for ASP.NET</h1>
<p class="lead">In this presentation we will provide multiple practical examples of how to complement an ASP.NET development with Vue 3.
</p>
<p><a href="https://vuejs.org/" class="btn btn-primary btn-lg">Learn more about Vue »</a></p>
<asp:Button ID="Success" runat="server" OnClick="Success_Click" Text="Success!" />
<asp:Button ID="Warning" runat="server" OnClick="Warning_Click" Text="Warning!" />
<asp:Button ID="Error" runat="server" OnClick="Error_Click" Text="Error!" />
<asp:Button ID="Info" runat="server" OnClick="Info_Click" Text="Info!" />
</div>
</asp:Content>