<%@ Page Title="Conferences - PROSE" Language="C#" MasterPageFile="~/CCPOneColumn.Master"
AutoEventWireup="true" CodeBehind="Conference.aspx.cs" Inherits="CcpWeb.Conference" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cphHead" runat="server">
<asp:Content ID="Content2" ContentPlaceHolderID="cphMain" runat="server">
<h4><asp:Label ID="DateLabel" runat="server" /></h4><br />
<asp:LinkButton ID="prevMonth" text="Previous Month" OnClick="prevConfReload" runat="server" ClientIDMode="Static" /> |
<asp:LinkButton ID="nextMonth" text="Next Month" OnClick="nextConfReload" runat="server" ClientIDMode="Static" />
<asp:GridView ID="gvExistingConfSched" runat="server" AutoGenerateColumns="false"
CssClass="table table-condensed" DataKeyNames="Id"
OnRowCommand="gvExistingConfSched_RowCommand"
OnRowDeleting="gvExistingConfSched_RowDeleting" BorderWidth="0px">
<AlternatingRowStyle BorderWidth="0px" />
<asp:BoundField DataField="Date" HeaderText="Date" />
<asp:BoundField DataField="Meeting" HeaderText="Meeting Type" />
<asp:ButtonField CommandName="View Details" ButtonType="Link" Text="View Details" />
<asp:CommandField ShowDeleteButton="True" />
<EmptyDataTemplate>No conferences scheduled.</EmptyDataTemplate>
<HeaderStyle BorderWidth="0px" />
<RowStyle BorderWidth="0px" />
<asp:LinkButton ID="addPatConf" OnClick="btnAddConference_Click" runat="server" Text="Add Patient Conference"
class="btn btn-primary" ClientIDMode="Static" />
<asp:LinkButton ID="addConf" OnClick="btnAddConfSched_Click" runat="server" Text="Add Conference Schedule"
class="btn btn-primary" ClientIDMode="Static" />