dfhdfhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhdfh
bnmbertsurrttrtrtrtrjhjhjjhjhhjhjhjhf'tdfg
D:
/
INETPUB
/
VHOSTS
/
edusoftinfotech.com
/
lavanyasalon.in
/
Admin
/
Upload FileeE
HOME
<%@ page title="" language="C#" masterpagefile="~/Admin/AdminMaster.master" autoeventwireup="true" inherits="Admin_AddBod, App_Web_bm1d42wl" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <div class="wrapper"> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Add Board of Directors </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Board of Directors</li> </ol> </section> <!-- Main content --> <section class="content"> <!-- SELECT2 EXAMPLE --> <div class="box box-default"> <div class="box-header with-border"> <h3 class="box-title">Select</h3> <div class="box-tools pull-right"> <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button> <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-remove"></i></button> </div> </div> <!-- /.box-header --> <div class="box-body"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label>Name</label> <asp:TextBox ID="txtName" runat="server" Enabled="true" CssClass="form-control"></asp:TextBox> </div> <div class="form-group"> <label>email</label> <asp:TextBox ID="txtMail" runat="server" CssClass="form-control"></asp:TextBox> </div> <!-- /.form-group --> <%--<div class="form-group"> <label>Notice Description</label> <asp:TextBox ID="txtDesc" runat="server" CssClass="form-control"></asp:TextBox> </div>--%> </div> <div class="col-md-6"> <div class="form-group"> <label>Designation</label> <asp:DropDownList ID="ddlDesg" runat="server" AutoPostBack="true" CssClass="form-control"> <asp:ListItem>Chairman</asp:ListItem> <asp:ListItem>Vice Chairman</asp:ListItem> <asp:ListItem>Managing Director</asp:ListItem> <asp:ListItem>Director(Operations)</asp:ListItem> <asp:ListItem>Director(Academics) </asp:ListItem> </asp:DropDownList> </div> </div> </div> </div> <div class="box-footer"> <asp:Button ID="btnSubmit" runat="server" CssClass="btn btn-info pull-left" Text="Submit" OnClick="btnSubmit_Click"/> <asp:Button ID="btnUpdate" runat="server" CssClass="btn btn-info pull-right" Text="Update" OnClick="btnUpdate_Click" /> </div> <asp:Label ID="lblErr" runat="server"></asp:Label> </div> <h3> Displaying List of Board of Directors </h3> <div class="row"> <div class="col-xs-12"> <div class="box"> <div class="box-header"> </div> <!-- /.box-header --> <div class="box-body table-responsive no-padding"> <asp:GridView ID="gvtBod" runat="server" AutoGenerateColumns="false" CssClass="table table-bordered table-striped" AllowPaging="true" PageSize="10" OnPageIndexChanging="gvtBod_PageIndexChanging"> <Columns> <asp:TemplateField HeaderText = "Sr. No." HeaderStyle-Width="100px" HeaderStyle-ForeColor="Black" ItemStyle-ForeColor="Black"> <ItemTemplate> <asp:Label ID="lblRowNumber" Text='<%# Container.DataItemIndex + 1 %>' runat="server" align="center" /> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Name" HeaderStyle-ForeColor="Black"> <ItemTemplate> <asp:Label ID="lblName" runat="server" Text='<%#Eval("Name") %>' ForeColor="Black"></asp:Label> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Description" HeaderStyle-ForeColor="Black"> <ItemTemplate> <asp:Label ID="lblDesg" runat="server" Text='<%#Eval("desg") %>' ForeColor="Black"></asp:Label> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="email" HeaderStyle-ForeColor="Black"> <ItemTemplate> <asp:Label ID="lblMail" runat="server" Text='<%#Eval("email") %>' ForeColor="Black"></asp:Label> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Actions" HeaderStyle-ForeColor="Black"> <ItemTemplate> <asp:Button ID="btnEdit" runat="server" Text="Edit" OnClick="btnEdit_Click" CssClass="btn-bitbucket"/> <asp:Button ID="btnDelete" runat="server" Text="Delete" OnClientClick="return confirm('Are you sure? want to delete the Director.');" OnClick="btnDelete_Click" CssClass="btn-danger" /> <asp:Label ID="lblID" runat="server" Text='<%#Eval("id") %>' Visible="false" ForeColor="Black"></asp:Label> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <input type="hidden" runat="server" id="hidCustomerID" /> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> </div> </section> </div> </div> </asp:Content>