-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUsers.aspx
32 lines (29 loc) · 1.72 KB
/
Users.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
<%@ Page Title="" Language="C#" MasterPageFile="~/User.master" AutoEventWireup="true" CodeFile="Users.aspx.cs" Inherits="Users" %>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div class="col-md-3" style="padding-top:100px; margin-left:200px;" >
<asp:TextBox ID="UserID" Class="form-control" runat="server" AutoPostBack="True" placeholder="Search by User Name"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidatorUserID" CssClass="text-danger" runat="server" ErrorMessage="The UserID field is Required !" ControlToValidate="UserID"></asp:RequiredFieldValidator>
</div>
<div class="form-group" style="padding-top:100px; margin-left:360px;">
<div style="margin-left:360px;" class="col-md-2"></div>
<div class="col-md-6">
<asp:Button ID="Button10" runat="server" Text="Search" CssClass="btn btn-default" OnClick="Button10_Click" />
</div>
</div>
<div class="row" style="padding-top:100px; margin-left:200px;">
<asp:Repeater ID="rptruser" runat="server">
<ItemTemplate>
<div class="col-sm-5 col-md-5">
<a style="text-decoration:none;" href="UserPage.aspx?uid=<%#Eval("uid") %>">
<div class="thumbnail">
<img src="Images/user.png" width="200" height="200"/>
<div class="caption">
<div class="probrand"><%#Eval("NAME") %></div>
</div>
</div>
</a>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</asp:Content>