-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.aspx
38 lines (35 loc) · 1.15 KB
/
Index.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="DemoMVP.Index" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Demo (Model-View-Presenter)</title>
</head>
<body>
<form id="form1" runat="server">
<h2>Demo Model-View-Presenter</h2>
<hr />
<div>
<table>
<tr>
<th colspan="2">Calculate the area of a circle</th>
</tr>
<tr>
<td>Set the radius:</td>
<td>
<asp:TextBox ID="txtRadius" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>Result:</td>
<td><asp:Label ID="lblArea" runat="server" ForeColor="red"></asp:Label></td>
</tr>
<tr align="right">
<td colspan="2">
<asp:Button ID="btnResultado" runat="server" Text="Value of the Area" OnClick="btnResult_Click" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>