-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathadministration.aspx
77 lines (75 loc) · 3.49 KB
/
administration.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="administration.aspx.cs" Inherits="Default2" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<p style="width: 933px">
<br />
<table style="width: 100%; height: 160px;">
<tr>
<td style="width: 162px">
<asp:Label ID="Label1" runat="server" Text="Label" Visible="False"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server" Width="230px" Visible="False"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 162px">
<asp:Label ID="Label2" runat="server" Text="Label" Visible="False"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Width="230px" Visible="False"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 162px">
<asp:Label ID="Label3" runat="server" Text="Label" Visible="False"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox3" runat="server" Width="230px" Visible="False"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 162px">
<asp:Label ID="Label4" runat="server" Text="Label" Visible="False"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox4" runat="server" Width="230px" Visible="False"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 162px; height: 26px">
</td>
<td style="height: 26px">
<asp:Button ID="Button1" runat="server" Text="ADD" Width="101px"
onclick="Button1_Click" Visible="False" />
<asp:Button ID="Button2" runat="server" Text="CANCEL" Width="100px"
Visible="False" />
</td>
</tr>
<tr>
<td style="width: 162px; height: 26px">
</td>
<td style="height: 26px">
</td>
</tr>
<tr>
<td style="width: 162px; height: 26px">
</td>
<td style="height: 26px">
</td>
</tr>
</table>
<p align="left">
<asp:GridView ID="GridView3" runat="server" AutoGenerateColumns="False"
Width="930px" AutoGenerateEditButton="True"
DataSourceID="objadministration" ForeColor="White">
<Columns>
<asp:BoundField HeaderText="NAME" DataField="name" />
<asp:BoundField HeaderText="DESIGNATION" DataField="designation" />
<asp:BoundField HeaderText="NUMBER" DataField="number" />
<asp:BoundField HeaderText="EMAIL ID" DataField="email" /></Columns>
</asp:GridView>
<asp:ObjectDataSource runat="server" ID="objadministration" TypeName="administration" DataObjectTypeName="administration" SelectMethod="select" InsertMethod="insert" UpdateMethod="update"></asp:ObjectDataSource>
</p>
</p>
</asp:Content>