-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmoney.aspx
24 lines (22 loc) · 1.17 KB
/
money.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="money.aspx.cs" Inherits="Serving_Hands.money" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body style="background-color:gray">
<form id="form1" runat="server">
<div>
<h2 style="color: rgb(96,188,15);">Money Details</h2>
Search id for delete and update<asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList><br />
Amount<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
Organization<asp:DropDownList ID="DropDownList2" runat="server"></asp:DropDownList><br />
Date<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br />
<asp:Button ID="Button1" runat="server" Text="Insert" OnClick="Button1_Click"/>
<asp:Button ID="Button2" runat="server" Text="Delete" OnClick="Button2_Click"/>
<asp:Button ID="Button3" runat="server" Text="Update" OnClick="Button3_Click"/>
<asp:Button ID="Button4" runat="server" Text="Search" Onclick="Button4_Click"/>
</div>
</form>
</body>
</html>