Skip to content

Instantly share code, notes, and snippets.

@krisb1220
Created May 22, 2020 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krisb1220/42f59406feed52a6d96b1d7ac0f9d5b7 to your computer and use it in GitHub Desktop.
Save krisb1220/42f59406feed52a6d96b1d7ac0f9d5b7 to your computer and use it in GitHub Desktop.
<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="ArrangeSeats.aspx.cs" Inherits="EIS.ArrangeSeats" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="ajaxToolkit" %>
<asp:Content ID="Content1" ContentPlaceHolderID="title" runat="server">
Arrange Seats
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="head" runat="server">
<style type="text/css">
.style2
{
width: 710px;
}
.style3
{
width: 100%;
height: 65px;
margin-bottom: 0px;
}
.style4
{
width: 317px;
}
.style5
{
width: 316px;
height: 45px;
}
.style6
{
width: 710px;
height: 2px;
margin-left: 20px;
}
.style7
{
width: 383px;
height: 45px;
}
</style>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<!doctype html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.15/css/bootstrap-multiselect.css" rel="stylesheet" type="text/css" />
<title>Hello, world!</title>
</head>
<body>
<div class=container>
<table align="center" bgcolor="#9999FF">
<tr>
<td>
<asp:Label ID="Label4" runat="server" Text="ARRANGE SEATS" Font-Size="X-Large"></asp:Label>
<hr />
</td>
</tr>
<tr>
<td class="style2" height="50px">
<asp:Label ID="Label5" runat="server" Text="Select Date"></asp:Label>
                           
<input type="date" />
</td>
</tr>
<tr>
<td class="style2" height="50px">
<table class="style3">
<tr>
<td class="style4" align="center">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<asp:Label ID="Label6" runat="server" Text="Select Department"></asp:Label>
</td>
<td align="center">
<asp:ListBox ID="ListBox1" runat="server" AutoPostBack="True"
DataSourceID="SqlDataSource1" DataTextField="Dname" DataValueField="Rooms"
SelectionMode="Multiple"></asp:ListBox>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="style6">
<table>
<tr>
<td align="center" class="style5">
<asp:Label ID="Label7" runat="server" Text="Select Course"></asp:Label>
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment