資源簡介
論壇用三層架構常用功能都有,包括驗證碼還用到的存儲過程和一些比如DATALIST控件等等

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Text;
using?System.Data;
using?Forum.Dal;
using?System.Data.SqlClient;
namespace?Forum.Bll
{
????public?class?DetailService
????{
????????DbDetail?detail?=?new?DbDetail();
????????public?void?Reply(string?titleID?string?titleName?string?content?int?UserIdint?rplyid)
????????{
????????????SqlParameter[]?sArr?=?new?SqlParameter[8];
????????????sArr[0]?=?new?SqlParameter(“@titleId“?SqlDbType.Int?4);
????????????sArr[0].Value?=?titleID;
????????????sArr[1]?=?new?SqlParameter(“@titleName“?SqlDbType.NVarChar?50);
????????????sArr[1].Value?=?titleName;
????????????sArr[2]?=?new?SqlParameter(“@Content“?SqlDbType.NVarChar?400);
????????????sArr[2].Value?=?content;
????????????sArr[3]?=?new?SqlParameter(“@PostTime“?SqlDbType.DateTime?8);
????????????sArr[3].Value?=?DateTime.Now.ToShortDateString();
????????????sArr[4]?=?new?SqlParameter(“@UserId“?SqlDbType.Int?4);
????????????sArr[4].Value?=?UserId;
????????????sArr[5]?=?new?SqlParameter(“@IP“?SqlDbType.NVarChar?50);
????????????sArr[5].Value?=?“192.168.1.11“;
????????????sArr[6]?=?new?SqlParameter(“@Remark“?SqlDbType.NVarChar?50);
????????????sArr[6].Value?=?“無“;
????????????sArr[7]?=?new?SqlParameter(“@Replyid“SqlDbType.Int4);
????????????sArr[7].Value?=?rplyid;
????????????detail.Reply(sArr);
????????}
????????public?DataTable?GetData(string?titleidstring?page)
????????{
????????????return?detail.GetData(titleidpage);
????????}
????????public?string?GetRowsCount(string?titleid)
????????{
????????????return?detail.GetRowCount(titleid);
????????}
????????public?DataTable?GetDataBytitleId(string?titleid)
????????{
????????????return?detail.GetDataBytitleId(titleid);
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????449??2009-02-15?10:31??論壇回復蓋樓\WebSites1\CheckUsers.aspx
?????文件???????1432??2009-02-23?15:21??論壇回復蓋樓\WebSites1\CheckUsers.aspx.cs
?????文件???????3988??2009-02-16?10:35??論壇回復蓋樓\WebSites1\Detail.aspx
?????文件???????4155??2009-02-23?15:06??論壇回復蓋樓\WebSites1\Detail.aspx.cs
?????文件???????6787??2009-02-23?19:24??論壇回復蓋樓\WebSites1\ti
?????文件???????1134??2009-02-15?19:13??論壇回復蓋樓\WebSites1\Flash.html
?????文件??????10810??2009-02-19?15:36??論壇回復蓋樓\WebSites1\Index.aspx
?????文件????????463??2009-02-15?18:56??論壇回復蓋樓\WebSites1\Index.aspx.cs
?????文件????????445??2009-02-19?15:02??論壇回復蓋樓\WebSites1\Register.aspx
?????文件????????409??2009-02-19?15:02??論壇回復蓋樓\WebSites1\Register.aspx.cs
?????文件???????1429??2009-02-23?18:06??論壇回復蓋樓\WebSites1\Reply.aspx.cs
?????文件???????1245??2009-02-19?16:22??論壇回復蓋樓\WebSites1\ti
?????文件???????1862??2009-02-15?22:24??論壇回復蓋樓\WebSites1\Web.Config
?????文件????????459??2009-02-23?15:30??論壇回復蓋樓\WebSites1\Web.sitemap
?????文件???????1878??2009-02-23?14:47??論壇回復蓋樓\WebSites1\Reply.aspx
?????文件???????5169??2009-02-23?19:17??論壇回復蓋樓\WebSites1\Detail2.aspx.cs
?????文件???????6649??2009-02-23?19:23??論壇回復蓋樓\WebSites1\Detail2.aspx
?????文件????????468??2009-02-21?15:21??論壇回復蓋樓\WebSites1\Admin\Detail.aspx
?????文件????????413??2009-02-21?11:23??論壇回復蓋樓\WebSites1\Admin\Detail.aspx.cs
?????文件????????918??2009-02-21?15:21??論壇回復蓋樓\WebSites1\Admin\Index.aspx
?????文件????????412??2009-02-21?11:22??論壇回復蓋樓\WebSites1\Admin\Index.aspx.cs
?????文件???????5202??2009-02-21?15:18??論壇回復蓋樓\WebSites1\Admin\Left.aspx
?????文件????????412??2009-02-21?11:22??論壇回復蓋樓\WebSites1\Admin\Left.aspx.cs
?????文件????????466??2009-02-21?15:21??論壇回復蓋樓\WebSites1\Admin\ti
?????文件????????412??2009-02-21?11:22??論壇回復蓋樓\WebSites1\Admin\ti
?????文件???????2149??2009-02-21?16:38??論壇回復蓋樓\WebSites1\Admin\Users.aspx
?????文件???????1972??2009-02-21?16:39??論壇回復蓋樓\WebSites1\Admin\Users.aspx.cs
?????文件???????1001??2009-02-21?16:18??論壇回復蓋樓\WebSites1\App_Code\Sql.cs
?????文件???????4795??2009-02-21?10:57??論壇回復蓋樓\WebSites1\App_Code\ValidateNumber.cs
?????文件??????16384??2009-02-23?18:14??論壇回復蓋樓\WebSites1\Bin\Forum.Bll.dll
............此處省略147個文件信息
評論
共有 條評論