资源简介
用c#语言开发,值得做为参考。
包括原代码,数据库,还有一些必备的文件。看看就知道了。
代码片段和文件信息
using System;
using System.Web;
using System.Web.UI;
using System.Data;
using System.Web.Security;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using StudentManager.IDAL;
using StudentManager.Common;
using StudentManager.DALFactory;
using StudentManager.Model;
#region 业务逻辑层公告实体
namespace StudentManager.BLL
{
///
/// 业务逻辑层公告实体
/// 创建者:余洪
/// 时间:2008-3
///
public class Affiche
{
#region 工厂实例化公告实体
///
/// 工厂实例化公告实体
///
IAffiche affiche = DataAccess.CreateAffiche();
#endregion
#region 绑定数据到页面数据控件
///
/// 绑定数据到页面数据控件
///
///
public void BindAffiches(GridView gdvAffiche)
{
gdvAffiche.DataSource = affiche.GetAffiches();
gdvAffiche.DataBind();
}
#endregion
#region 绑定指定公告信息
///
/// 绑定指定公告信息
///
/// 公告编号
/// 详细控件
///
public void BindAffiche(int af_IdDetailsView dvAfficheDetails)
{
dvAfficheDetails.DataSource=affiche.GetAffiche(af_Id);
dvAfficheDetails.DataBind();
}
#endregion
#region 获取公告信息表
///
/// 获取公告信息表
///
/// 公告编号
/// 公告信息表
public DataTable GetAfficheTb(int af_Id)
{
return affiche.GetAffiche(af_Id).Tables[0];
}
#endregion
#region 发表公告信息
///
/// 发表公告信息
///
/// 公告实体
public void Add_Affiche(AfficheInf afficheInf)
{
if (afficheInf.Af_EnableTime < DateTime.Now)
{
Jscript.Alert(“输入的有效日期小于了现在日期!“);
}
else
{
if (affiche.AddAffiche(afficheInf) == false)
{
Jscript.AlertAndRedirect(“发表公告失败!“ “AddAffiche.aspx“);
}
else
{
Jscript.AlertAndRedirect(“发表公告成功!“ “AddAffiche.aspx“);
}
}
}
#endregion
#region 删除公告信息
///
/// 删除公告信息
///
/// 公告编号
/// 部门ID
///
public void DelAffiche(int af_Id string dp_Id)
{
int int_reault = affiche.DelAffiche(af_Id dp_Id);
if (int_reault==-1)
{
Jscript.AlertAn
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-08-06 10:00 Web\Administrator
....... 8345 2008-05-20 22:11 Web\AfficheFiles\03.css
....... 2847 2008-05-20 22:11 Web\AfficheFiles\date.js
....... 29514 2008-05-20 22:11 Web\AfficheFiles\footer_bg.jpg
....... 24621 2008-05-20 22:11 Web\AfficheFiles\lhotblog.jpg
....... 24837 2008-05-20 22:11 Web\AfficheFiles\lrecent.jpg
....... 18257 2008-05-20 22:11 Web\AfficheFiles\lunar.js
....... 24064 2008-05-20 22:11 Web\AfficheFiles\NET面试问题.doc
....... 15132 2008-05-20 22:11 Web\AfficheFiles\StudentManager.sql
....... 23366 2008-05-20 22:11 Web\AfficheFiles\StudentManager1.sql
....... 4461 2008-05-20 22:11 Web\AfficheFiles\StudentManager2.sql
....... 13824 2008-06-05 13:59 Web\AfficheFiles\template.xls
....... 519 2008-06-09 14:35 Web\AfficheFiles\vssver2.scc
....... 22 2008-06-02 22:09 Web\AfficheFiles\关于毕业设计.zip
....... 10752 2008-05-21 00:11 Web\AfficheFiles\选课安排.doc
....... 10752 2008-05-25 03:03 Web\AfficheFiles\重修通知.doc
目录 0 2008-08-06 10:00 Web\AfficheFiles
目录 0 2008-08-06 10:00 Web\App_Code
文件 10485760 2008-08-06 11:54 Web\App_Data\ASPNETDB.MDF
文件 516096 2008-08-06 11:54 Web\App_Data\aspnetdb_log.ldf
目录 0 2008-08-06 10:12 Web\App_Data
....... 14 2005-07-15 09:39 Web\App_Themes\Default\Default.css
....... 0 2008-03-22 16:18 Web\App_Themes\Default\Default.skin
....... 164 2008-05-05 23:34 Web\App_Themes\Default\vssver2.scc
目录 0 2008-08-06 10:00 Web\App_Themes\Default
目录 0 2008-08-06 10:00 Web\App_Themes
文件 32768 2008-08-06 10:58 Web\Bin\StudentManager.BLL.dll
文件 56832 2008-08-06 10:58 Web\Bin\StudentManager.BLL.pdb
文件 16384 2008-08-06 10:58 Web\Bin\StudentManager.Common.dll
文件 13824 2008-08-06 10:58 Web\Bin\StudentManager.Common.pdb
............此处省略734个文件信息
评论
共有 条评论