master
editor 2 weeks ago
commit a1c16663f3

@ -0,0 +1,44 @@
ASP.NET简单会议事务系统
一、源码描述
环境VS2022 sql2019
二、功能介绍
介绍
1开发环境VS2022SQL Server 2019 |开发语言C#语言
2该系统首发于51aspx适合初学者学习。
3系统功能有用户管理管理员管理添加用户会议室管理会议管理会议查询我的会议等等。
4系统的后台和前台共享一个页面但有"权限"限制,有的页面"普通用户"只可以远观,而不可以亵玩矣!
5用户名和密码为51aspx身份管理员   用户名和密码为zhang身份普通用户
6DB_51Aspx下为数据库文件附加即可
三、注意事项
1、在项目web.config修改数据库连接字符串附加数据库。
2、管理员账号与密码51aspx 51aspx 。
3、ctrl+F5运行即可。
作者: 一半情弧
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/SimpleMeeting
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="foot.ascx.cs" Inherits="webcontrol_foot" %>
<table border="0" style="width: 638px">
<tr>
<td colspan="6" style="height: 20px; font-weight: normal;" align="center">
用户来访信息:<asp:HyperLink ID="HyperLink1" runat="server" ImageUrl="~/images/b13.gif">您的IP地址</asp:HyperLink><asp:Label
ID="Labip" runat="server"></asp:Label>,操作系统:<asp:Label ID="Labczxt" runat="server"></asp:Label>,浏览器:<asp:Label
ID="Labllq" runat="server"></asp:Label></td>
</tr>
<tr>
<td style="width: 157px; height: 20px;" align="right">
版权所有:
</td>
<td style="width: 70px; height: 20px;">
一半情弧
</td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Globalization;
using Microsoft.Win32;
using System.IO;
using System.Diagnostics;
public partial class webcontrol_foot : System.Web.UI.UserControl

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="login.ascx.cs" Inherits="Control_login" %>
<table border="0" style="width: 305px; height: 1px;">
<tr>
<td>
<div align="right">
用户名:</div>
</td>
<td>
<div align="left">
<asp:TextBox ID="txtusername" runat="server" Width="150px"></asp:TextBox><asp:RequiredFieldValidator
ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtusername" Display="Dynamic"
ErrorMessage='"用户名"必填'></asp:RequiredFieldValidator>&nbsp;</div>
</td>
</tr>
<tr>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Control_login : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="menu.ascx.cs" Inherits="Control_menu" %>
<link href="../StyleSheet.css" rel="stylesheet" type="text/css" />
<asp:TreeView ID="TreeView1" runat="server" LineImagesFolder="~/TreeLineImages" ShowLines="True">
<Nodes>
<asp:TreeNode Text="系统首页" Value="系统首页" NavigateUrl="~/Default.aspx"></asp:TreeNode>
<asp:TreeNode Text="用户管理" Value="用户管理" NavigateUrl="~/edituser.aspx">
<asp:TreeNode Text="编辑用户" Value="编辑用户" NavigateUrl="~/edituser.aspx"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="管理员管理" Value="管理员管理" NavigateUrl="~/editadmin.aspx">
<asp:TreeNode Text="编辑管理员" Value="编辑管理员" NavigateUrl="~/editadmin.aspx"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="添加用户" Value="添加用户" NavigateUrl="~/adduser.aspx"></asp:TreeNode>
<asp:TreeNode Text="会议室管理" Value="会议室管理">
<asp:TreeNode Text="添加会议室" Value="添加会议室" NavigateUrl="~/addroom.aspx"></asp:TreeNode>
<asp:TreeNode Text="管理会议室" Value="管理会议室" NavigateUrl="~/manageroom.aspx"></asp:TreeNode>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Control_menu : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Title="系统首页-会议事务系统" %>
<%@ Register Assembly="EeekSoft.Web.PopupWin" Namespace="EeekSoft.Web" TagPrefix="cc1" %>
<%-- 在此处添加内容控件 --%>
<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="ContentPlaceHolder1">
<table border="1" bordercolor="#000000" style="width: 633px">
<tr>
<td colspan="2" style="height: 22px">
<div align="center">
</div>
<div align="center" style="font-weight: bold; font-size: 14px; color: black">
<asp:Image ID="Image2" runat="server" ImageAlign="AbsMiddle" ImageUrl="~/images/set.gif" />
管理统计</div>
</td>
</tr>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register Assembly="Meta.Web" Namespace="Meta.Web.Controls.MasterPages" TagPrefix="mc" %>
<%@ Register Src="Control/foot.ascx" TagName="foot" TagPrefix="uc2" %>
<%@ Register Src="Control/menu.ascx" TagName="menu" TagPrefix="uc1" %>
<%@ Register Assembly="Meta.Web" Namespace="Meta.Web.Controls" TagPrefix="mc" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
<link href="../StyleSheet.css" rel="stylesheet" type="text/css" />
<link href="../StyleSheet.css" rel="stylesheet" type="text/css" />
<link href="../StyleSheet.css" rel="stylesheet" type="text/css" />

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class MasterPage : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Message.aspx.cs" Inherits="Message" Title="查看我的会议留言-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 628px">
<tr>
<td bgcolor="#a43737" style="height: 23px; width: 598px;">
<div align="center" style="font-weight: bold; font-size: 15px; color: #ffffff">
我的会议-查看我的会议留言</div>
</td>
</tr>
<tr>
<td align="center" style="width: 598px">
<asp:DataList ID="dlmeeting" runat="server" BackColor="LightGoldenrodYellow" BorderColor="Tan"
BorderWidth="1px" CellPadding="0" ForeColor="Black" ShowFooter="False" Width="625px">
<FooterStyle BackColor="Tan" />
<SelectedItemStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite" />

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Message : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
BODY {
font-size: 12px;
color: #000000;
text-decoration: none;
margin: 0px;
}
a:link {
}
.style1 {font-size: 24px}
a {
font-size: 12px;
color: #333333;
text-decoration: none;
}
a:hover {

@ -0,0 +1,15 @@
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0">
Migration Report
</title><style>
/* Body style, for the entire document */
body
{
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="addmeeting.aspx.cs" Inherits="addmeeting" Title="我要添加会议-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737">
我的会议-我要添加会议</td>
</tr>
<tr>
<td align="right" style="width: 191px">
会议名称:</td>
<td align="left">
<asp:TextBox ID="txtname" runat="server" Width="150px"></asp:TextBox><asp:RequiredFieldValidator
ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtname" Display="Dynamic"
ErrorMessage="RequiredFieldValidator">不能为空</asp:RequiredFieldValidator><asp:CustomValidator

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
//该源码下载自www.51aspx.com()
public partial class addmeeting : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="addroom.aspx.cs" Inherits="addroom" Title="添加会议室-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737">
会议室管理-添加会议室</td>
</tr>
<tr>
<td align="right" style="width: 251px">
会议室名称:</td>
<td align="left">
<asp:TextBox ID="txtname" runat="server" Width="150px"></asp:TextBox><asp:RequiredFieldValidator
ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtname" Display="Dynamic"
ErrorMessage="RequiredFieldValidator">不能为空</asp:RequiredFieldValidator><asp:CustomValidator

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class addroom : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="adduser.aspx.cs" Inherits="adduser" Title="添加用户-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737;">
添加用户</td>
</tr>
<tr>
<td align="right" style="width: 288px">
用户名称:</td>
<td align="left">
<asp:TextBox ID="txtname" runat="server" Width="150px"></asp:TextBox><asp:RequiredFieldValidator
ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtname" Display="Dynamic"
ErrorMessage="RequiredFieldValidator">不能为空</asp:RequiredFieldValidator><asp:CustomValidator

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class adduser: System.Web.UI.Page
{
SqlConnection cn;
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="adminchangpwd.aspx.cs" Inherits="adminchangpwd" Title="修改密码-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 20px; background-color: #a43737">
我的会议-修改密码</td>
</tr>
<tr>
<td align="right" style="width: 304px; height: 18px">
用户名称:</td>
<td align="left" style="height: 18px">
&nbsp;<asp:Label ID="Labadminname" runat="server" Style="font-weight: bold; font-size: 13px"></asp:Label></td>
</tr>
<tr>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class adminchangpwd : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="editadmin.aspx.cs" Inherits="editadmin" Title="编辑管理员-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td bgcolor="#a43737" style="height: 23px">
<div align="center" style="font-weight: bold; font-size: 15px; color: #ffffff;">
管理管理员-编辑管理员</div>
</td>
</tr>
<tr>
<td align="left">
<asp:GridView ID="gvadmininfo" runat="server" AllowPaging="True" AutoGenerateColumns="False"
BackColor="LightGoldenrodYellow" BorderColor="Tan" BorderWidth="1px" CaptionAlign="Top"
CellPadding="2" ForeColor="Black" GridLines="None" OnRowCreated="gvadmininfo_RowCreated"
Style="text-align: center" Width="628px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class editadmin : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="editmeeting.aspx.cs" Inherits="editmeeting" Title="编辑会议-会议事务系统" %>
<%@ Register Assembly="Meta.Web" Namespace="Meta.Web.Controls" TagPrefix="mc" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737">
我的会议-编辑会议</td>
</tr>
<tr>
<td align="right" style="width: 191px">
会议名称:</td>
<td align="left">
<asp:TextBox ID="txtname" runat="server" ReadOnly="True" Width="150px"></asp:TextBox></td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class editmeeting : System.Web.UI.Page
{
ArrayList year, month, day, hour, m;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="editroom.aspx.cs" Inherits="editroom" Title="编辑会议室-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737">
会议室管理-编辑会议室</td>
</tr>
<tr>
<td align="right" style="width: 251px">
会议室名称:</td>
<td align="left">
<asp:TextBox ID="txtname" runat="server" Width="150px"></asp:TextBox><asp:RequiredFieldValidator
ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtname" Display="Dynamic"
ErrorMessage="RequiredFieldValidator">不能为空</asp:RequiredFieldValidator></td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class editroom : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="edituser.aspx.cs" Inherits="edituser" Title="编辑会员-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="left">
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
<table border="0" style="width: 633px">
<tr>
<td bgcolor="#a43737" style="height: 23px">
<div align="center" style="font-weight: bold; font-size: 15px; color: #ffffff">
管理管理员-编辑会员</div>
</td>
</tr>
<tr>
<td align="left">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class edituser : System.Web.UI.Page
{
SqlConnection cn;
DataSet ds = new DataSet();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="login.aspx.cs" Inherits="login" %>
<%@ Register Src="Control/login.ascx" TagName="login" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>登录页面-会议事务系统</title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body style="text-align: center">
<form id="form1" runat="server">
<div style="text-align: center">
<table border="0" style="width: 536px; height: 356px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="managermeeting.aspx.cs" Inherits="managermeeting" Title="管理会议-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<script type="text/javascript">
function SelectAll(tempControl)
{
var theBox=tempControl;
xState=theBox.checked;
elem=theBox.form.elements;
for(i=0;i<elem.length;i++)
{
if(elem[i].type=="checkbox" && elem[i].id!=theBox.id)
{
if(elem[i].checked!=xState)
{
elem[i].click();

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class managermeeting : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="manageroom.aspx.cs" Inherits="manageroom" Title="管理会议室-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="left" style="height: 74px">
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
<table border="0" style="width: 633px">
<tr>
<td bgcolor="#a43737" style="height: 23px">
<div align="center" style="font-weight: bold; font-size: 15px; color: #ffffff">
会议室管理-管理会议室</div>
</td>
</tr>
<tr>
<td align="left">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class manageroom : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="meetingfind.aspx.cs" Inherits="meetingfind" Title="会议检索-会议事务系统" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" style="font-weight: bold; font-size: 15px; color: white; background-color: #a43737">
会 议 检 索</td>
</tr>
<tr>
<td align="left">
<asp:Panel ID="Panel1" runat="server" Height="50px" Visible="False" Width="125px">
<table border="0" style="width: 633px">
<tr>
<td align="left">
<asp:GridView ID="gvmyjionmeeting" runat="server" AutoGenerateColumns="False" BackColor="LightGoldenrodYellow"
BorderColor="Tan" BorderWidth="1px" CaptionAlign="Top" CellPadding="2" ForeColor="Black"

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class meetingfind : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="myjionmeeting.aspx.cs" Inherits="myjionmeeting" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="left">
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
<table border="0" style="width: 633px">
<tr>
<td bgcolor="#a43737" style="height: 23px">
<div align="center" style="font-weight: bold; font-size: 15px; color: #ffffff">
我的会议-我要参加的会议</div>
</td>
</tr>
<tr>
<td align="left">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class myjionmeeting : System.Web.UI.Page
{
SqlConnection cn;

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="mymeeting.aspx.cs" Inherits="mymeeting" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="left">
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
<table border="0" style="width: 633px">
<tr>
<td bgcolor="#a43737" style="height: 23px">
<div align="center" style="font-weight: bold; font-size: 15px; color: #ffffff">
我的会议-我所创建的会议</div>
</td>
</tr>
<tr>
<td align="left">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
//该源码下载自www.51aspx.com()
public partial class mymeeting : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="post.aspx.cs" Inherits="post" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table border="0" style="width: 633px">
<tr>
<td align="center" colspan="2" style="font-weight: bold; font-size: 15px; color: white;
height: 22px; background-color: #a43737">
我的会议-会议留言</td>
</tr>
<tr>
<td align="right" style="width: 251px">
收件人:</td>
<td align="left">
<asp:TextBox ID="txttouser" runat="server" ReadOnly="True" Width="150px"></asp:TextBox></td>
</tr>
<tr style="color: #000000">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
//该源码下载自www.51aspx.com()
public partial class post : System.Web.UI.Page
{
Loading…
Cancel
Save