-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewDataSet.aspx
More file actions
36 lines (31 loc) · 2.03 KB
/
ViewDataSet.aspx
File metadata and controls
36 lines (31 loc) · 2.03 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
<%@ Page Title="" Language="C#" MasterPageFile="~/HomeMaster.Master" AutoEventWireup="true" CodeFile="ViewDataSet.aspx.cs" Inherits="SastoMarket.ViewDataSet" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<link rel="stylesheet" href="css/footer.css" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="container m-5 p-5">
<asp:Repeater ID="Repeater1" class="navbar" runat="server">
<ItemTemplate>
<h2 class="text-center" >Profile Information</h2>
<hr>
<div class="row">
<div class="col-sm-6 ">
<b>Name</b><br>
<b>Email</b><br>
<b>Phone</b><br>
<b>Address</b><br>
</div>
<div class="col-sm-6">
<%#Eval("uid") %><br>
<%#Eval("username") %>
<br>
<%#Eval("password") %><br>
<%#Eval("address") %><br>
<br />
<br />
</div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</asp:Content>