-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCSharpFundamental.aspx
More file actions
51 lines (48 loc) · 2.56 KB
/
CSharpFundamental.aspx
File metadata and controls
51 lines (48 loc) · 2.56 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CSharpFundamental.aspx.cs" Inherits="ASP_ALL_In_1.CSharpFundamental" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>C# Fundamentals</title>
<style type="text/css">
.auto-style1 {
margin-bottom: 0px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Panel ID="Panel1" runat="server" Height="382px">
<asp:Label ID="Label1" runat="server" Text="Select Operator :" Font-Bold="True" Font-Size="20px" ForeColor="Green"></asp:Label>
<asp:DropDownList ID="DropDownList1" runat="server" CssClass="auto-style1" Font-Bold="True" Height="26px" Width="196px" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>Select the Operator...</asp:ListItem>
<asp:ListItem>+</asp:ListItem>
<asp:ListItem>-</asp:ListItem>
<asp:ListItem>*</asp:ListItem>
<asp:ListItem>/</asp:ListItem>
</asp:DropDownList>
<br />
<br />
<br />
<asp:Label ID="Label2" runat="server" Font-Bold="True" Font-Size="20px" ForeColor="Green" Text="Enter First Number :"></asp:Label>
<asp:TextBox ID="txtNum1" runat="server" Font-Bold="True" Height="26px" Width="164px"></asp:TextBox>
<br />
<br />
<br />
<asp:Label ID="Label3" runat="server" Font-Bold="True" Font-Size="20px" ForeColor="Green" Text="Enter Second Number :"></asp:Label>
<asp:TextBox ID="txtNum2" runat="server" Font-Bold="True" Height="26px" Width="149px"></asp:TextBox>
<br />
<br />
<br />
<asp:Label ID="Label4" runat="server" Font-Bold="True" Font-Size="20px" ForeColor="Blue" Text="Result :"></asp:Label>
<asp:Label ID="lblResult" runat="server" Font-Bold="True" Font-Size="20px" ForeColor="Blue" Text="0"></asp:Label>
</asp:Panel>
</div>
</form>
</body>
</html>