-
Notifications
You must be signed in to change notification settings - Fork 5
/
branchrslt.aspx
38 lines (35 loc) · 1.66 KB
/
branchrslt.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
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="branchrslt.aspx.cs" Inherits="Default7" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 130%">
<tr>
<td>
</td>
</tr>
<tr>
<td align="left">
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td align="left">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
AutoGenerateEditButton="True"
Height="174px" Width="692px" DataSourceID="objre">
<columns>
<asp:BoundField HeaderText="SR.NO" DataField="srno"/>
<asp:BoundField HeaderText="SEMESTER" DataField="batchid" />
<asp:BoundField HeaderText="SUBID" DataField="subid"/>
<asp:BoundField HeaderText="ROLL NO" DataField="enrolmentno"/>
<asp:BoundField HeaderText="MARKS THEORY" DataField="markstheory"/>
<asp:BoundField HeaderText="MARKS PRACTICAL" DataField="markspractical" />
<asp:BoundField HeaderText="DATE OF RESULT" DataField="res_date" />
</columns>
</asp:GridView>
<asp:ObjectDataSource ID="objre" runat="server" TypeName="mresult" DataObjectTypeName="mresult" SelectMethod="select" UpdateMethod="update"></asp:ObjectDataSource>
</td>
</tr>
</table>
</asp:Content>