|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
源代码保护方面其实现在考虑得没那么多了..NET也可以反编译.ASP写得复杂的话别人能看得懂的话.他也有能力自己写了.这方面担心的倒不太多.纵观现在网上可以下载的那些所谓BBS还有什么网站等等的源代码存储历程|分页bigeagle
ifexists(select*fromsysobjectswhereID=object_id("up_TopicList"))
dropprocup_TopicList
go
createprocup_TopicList
@a_ForumIDint,@a_intDaysint,@a_intPageNoint,@a_intPageSizetinyint
as
declare@m_intRecordNumberint
declare@m_intStartRecordint
select@m_intRecordNumber=@a_intPageSize*@a_intPageNo
select@m_intStartRecord=@a_intPageSize*(@a_intPageNo-1)+1
if@a_intDays=0--假如不限制天数
begin
/*求切合前提纪录数*/
select"RecordCount"=count(*)
fromBBSwhereLayer=1andForumID=@a_ForumID
/*输入记录*/
/*起首界说可转动光标*/
setrowcount@m_intRecordNumber
declarem_curTempScrollcursor
for
selecta.ID,a.Title,d.UserName,a.FaceID,
ContentSize=datalength(a.Content),
TotalChilds=(selectsum(TotalChilds)
fromBBSasb
wherea.RootID=b.RootID),
LastReplyTime=(selectmax(PostTime)
fromBBSasc
wherea.RootID=c.RootID)
fromBBSasa
joinBBSUserasdona.UserID=d.ID
whereLayer=1andForumID=@a_ForumID
orderbyRootIDdesc,Layer,PostTime
openm_curTemp
fetchabsolute@m_intStartRecordfromm_curTemp
while@@fetch_status=0
fetchnextfromm_curTemp
setrowcount0
/*清场*/
CLOSEm_curTemp
DEALLOCATEm_curTemp
end
else--假如限制天数
begin
/*求切合前提纪录数*/
select"RecordCount"=count(*)
fromBBSwhereLayer=1andForumID=@a_ForumID
anddateadd(day,@a_intDays,PostTime)>getdate()
/*输入记录*/
/*起首界说可转动光标*/
setrowcount@m_intRecordNumber
declarem_curTempScrollcursor
for
selecta.ID,a.Title,d.UserName,a.FaceID,
ContentSize=datalength(a.Content),
TotalChilds=(selectsum(TotalChilds)
fromBBSasb
wherea.RootID=b.RootID),
LastReplyTime=(selectmax(PostTime)
fromBBSasc
wherea.RootID=c.RootID)
fromBBSasa
joinBBSUserasdona.UserID=d.ID
whereLayer=1andForumID=@a_ForumID
anddateadd(day,@a_intDays,PostTime)>getdate()
orderbyRootIDdesc,Layer,PostTime
openm_curTemp
fetchabsolute@m_intStartRecordfromm_curTemp
while@@fetch_status=0
fetchnextfromm_curTemp
setrowcount0
/*清场*/
CLOSEm_curTemp
DEALLOCATEm_curTemp
end
go
注:若在asp中挪用存储历程的command工具为cm,则setrs=cm.execute,然后用setrs=rs.nextrecordset取下一笔记录。
</p>在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。 |
|