-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathOperation.aspx
More file actions
37 lines (31 loc) · 1.24 KB
/
Operation.aspx
File metadata and controls
37 lines (31 loc) · 1.24 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Operation.aspx.cs" Inherits="NumberOperationsWebApp.Operation" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="operationsForm" runat="server">
<!-- first number -->
<div>
<asp:Label ID="firstNumberLabel" Text="Enter first number" runat="server"></asp:Label>
<asp:TextBox ID="firstNumber" runat="server"></asp:TextBox>
</div>
<!-- second number -->
<div>
<asp:Label ID="secondNumberLabel" Text="Enter second number" runat="server"></asp:Label>
<asp:TextBox ID="secondNumber" runat="server"></asp:TextBox>
</div>
<!-- output -->
<div>
<asp:TextBox ID="output" runat="server"></asp:TextBox>
</div>
<!-- buttons -->
<div>
<asp:Button ID="addButton" Text="Add" runat="server" OnClick="addButton_Click" />
<asp:Button ID="subtractButton" Text="Subtract" runat="server" OnClick="subtractButton_Click" />
<asp:Button ID="primeButton" Text="Find Prime" runat="server" OnClick="primeButton_Click" />
</div>
</form>
</body>
</html>