資源簡介
開發環境: vs2005/vs2008/vs2010(c#語言)+sqlserver2005/sql2008
系統功能:
(1)本系概況:添加,修改和刪除本系概況信息。
(2)新聞管理:添加,修改和刪除新聞信息。
(3)教學工作管理:添加,修改和刪除教學工作信息。
(4)招生就業信息管理:添加,修改和刪除招生就業信息。
(5)黨建工作信息管理:添加,修改和刪除黨建工作信息。
(6)學生工作信息管理:添加,修改和刪除學生工作信息。
(7)活動相冊信息管理:添加,修改和刪除學校活動相冊。
系統亮點:
1 程序使用三層架構思想,App_Code/DB是數據層,App_Code/Logic是業務邏輯層,App_Code/Model映射數據庫表
2 前臺設計使用div+css技術,非傳統table布局方式
3 新聞內容及其他內容信息使用FCKEditor控件
運行步驟:
1 解壓程序文件夾到任意目錄,這里我放到了桌面上
2 使用sqlserver2005的管理器,將數據庫文件ComputerSpecialWebData.mdf附加到sqlserver2005中
就在那里選擇添加,選擇數據庫文件的路徑就可以了
3 運行vs2005,打開網站,設置主頁,開始運行,admin文件夾是后臺管理的

代碼片段和文件信息
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?ComputerSpecialWeb.Logic;
public?partial?class?Bxgk?:?System.Web.UI.Page
{
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????????string?currentPageString?=?Request.QueryString[“currentPage“];
????????if?(currentPageString?==?null)?currentPageString?=?“1“;
????????int?recordCount?=?BxgkLogic.GetRecordCount();???/*得到本系概況的總記錄數*/
????????int?totalPages?=?BxgkLogic.GetTotalPages();?????/*得到總共需要顯示的頁數*/
????????/*計算頁碼信息(包括上頁,下頁,最后一頁)*/
????????int?currentPage?=?Int32.Parse(currentPageString);
????????if?(currentPage?1)?currentPage?=?1;
????????if?(currentPage?>?totalPages)?currentPage?=?totalPages;
????????int?prevPage?=?currentPage?-?1;
????????if?(prevPage?1)?prevPage?=?1;
????????int?nextPage?=?currentPage?+?1;
????????if?(nextPage?>?totalPages)?nextPage?=?totalPages;
????????int?lastPage?=?totalPages;
????????this.RecordCount.Text?=?recordCount.ToString();
????????this.PrevPage.Text?=?prevPage.ToString();
????????this.NextPage.Text?=?nextPage.ToString();
????????this.LastPage.Text?=?lastPage.ToString();
????????this.CurrentPage.Text?=?currentPage.ToString();
????????this.TotalPage.Text?=?totalPages.ToString();
????????DataSet?ds?=?BxgkLogic.QueryBxgkInfo(currentPage);
????????this.RepeaterBXGK.DataSource?=?ds;
????????this.RepeaterBXGK.DataBind();
????}
????protected?void?RepeaterBXGK_ItemDataBound(object?sender?RepeaterItemEventArgs?e)
????{
????????Literal?l_ut?=?(Literal)e.Item.FindControl(“UpdateTime“);
????????l_ut.Text?=?Convert.ToDateTime(l_ut.Text).ToShortDateString();
????????Literal?l_id?=?(Literal)e.Item.FindControl(“id“);
????????Literal?l_title?=?(Literal)e.Item.FindControl(“title“);
????????int?id?=?Int32.Parse(l_id.Text);
????????if?(BxgkLogic.isRedLight(id))
????????????l_title.Text?=?““?+?l_title.Text?+?“ “;
????????if?(BxgkLogic.isBlueLight(id))
????????????l_title.Text?=?““?+?l_title.Text?+?“ “;?
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????2552??2012-06-07?23:06??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\css\st
?????文件????????828??2012-06-09?11:02??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\Downloads\20100321183106.txt
?????文件????????236??2012-06-04?14:12??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\behaviors\disablehandles.htc
?????文件????????822??2012-06-04?00:34??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\behaviors\showtableborders.htc
?????文件???????2154??2012-06-08?17:24??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\fck_editorarea.css
?????文件???????4145??2012-06-08?15:55??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\fck_internal.css
?????文件???????1696??2012-06-07?18:46??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\fck_showtableborders_gecko.css
?????文件????????288??2012-06-09?05:03??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_address.png
?????文件????????293??2012-06-08?06:17??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_blockquote.png
?????文件????????229??2012-06-02?07:20??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_div.png
?????文件????????218??2012-06-11?01:58??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_h1.png
?????文件????????220??2012-06-09?04:17??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_h2.png
?????文件????????219??2012-06-06?21:43??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_h3.png
?????文件????????229??2012-06-08?13:18??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_h4.png
?????文件????????236??2012-06-05?02:07??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_h5.png
?????文件????????216??2012-06-10?02:13??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_h6.png
?????文件????????205??2012-06-04?12:27??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_p.png
?????文件????????223??2012-06-01?09:32??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\block_pre.png
?????文件????????184??2012-06-06?07:53??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\fck_anchor.gif
?????文件????????599??2012-06-10?07:25??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\fck_flashlogo.gif
?????文件????????105??2012-06-05?16:06??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\fck_hiddenfield.gif
?????文件?????????54??2012-06-05?20:24??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\fck_pagebreak.gif
?????文件???????1709??2012-06-06?23:18??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\css\images\fck_plugin.gif
?????文件???????1773??2012-06-05?10:28??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\common\fck_dialog_common.css
?????文件??????10346??2012-06-07?01:06??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\common\fck_dialog_common.js
?????文件?????????74??2012-06-02?22:20??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\common\images\locked.gif
?????文件????????104??2012-06-10?11:17??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\common\images\reset.gif
?????文件?????????75??2012-06-06?11:02??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\common\images\unlocked.gif
?????文件???????2044??2012-06-05?14:08??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\fck_about\logo_fckeditor.gif
?????文件????????920??2012-06-09?07:50??asp.net+sqlserver2005計算機工程系網站\ComputerSpecialWeb\admin\fckeditor\editor\dialog\fck_about\logo_fredck.gif
............此處省略768個文件信息
- 上一篇:C#程序設計教程李春葆第三版 課后答案
- 下一篇:C#坦克大戰課程設計
評論
共有 條評論