|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP是依赖组件的,能访问数据库的组件好多就有好多种,再有就是你微软的工具可是什么都要收钱的啊!分页也许在九九年做游戏网站的时分,就对文章的公布感应贫苦,不外那会儿玩ASP不精。只是迁就用着。在碰到长文件10000字时网页就是一年夜片长了。
客岁,做一个通用的文章与旧事办理体系时,曾写了一段代码,用来分别。如今贴出来。
要申明的是:
我的文章录进界面是基于WEB的HEMLEDITOR,就像这里的ABC代码差未几。以是实践提交的是HTML格局的文本。
对HTML做了响应的处置,不会由HTML代码中切开。
这里另外一位兄弟曾宣布过一个,道理一样,不外我没细心看过,不知有啥分歧。
代码以下:
--------------------------------------
RequestFormItem
I_Forder=Request.Form("I_Folder")
I_Topic=Request.Form("I_Topic")
I_Title=htmlencode(Request.Form("I_Title"))
I_Body=Request.Form("body")
I_Source=Request.Form("I_Source")
I_Keyword=htmlencode(Request.Form("I_Keyword"))
I_ISHOT=request.form("ishot")
ifi_ishot=""theni_ishot="N"
i_ispic=request.form("ispic")
ifi_ispic=""theni_ispic="N"
i_pic=request.form("InsertImage")
i_body=replace(i_body,"contentEditable=true","contentEditable=false")
CheckInput
......
GetPages,B=Body
B_Len=Len(I_Body)
B_Pages=1
T=Temp
T_Loop=true
DoWhileT_Loop这里loop屡次,每4000分一页,算出页码并到场库。
IfB_Len>4000then
N_Body=Left(I_Body,4000)N=New
If"<P"inN_Body,Else">"inN_Body
IfInstrrev(N_Body,"<P")>0and(Len(N_Body)-Instrrev(N_Body,"<P"))<400then
N_Body=Left(N_Body,InstrRev(N_Body,"<P")-1)
elseifInstrrev(N_Body," ")>0and(Len(N_Body)-Instrrev(N_Body," "))<400then
N_Body=Left(N_Body,InstrRev(N_Body," ")-1)
ElseIfInstrrev(N_Body,"。")>0and(Len(N_Body)-Instrrev(N_Body,"。"))<400then
N_Body=Left(N_Body,InstrRev(N_Body,"。"))
ElseIfInstrrev(N_Body,";")>0and(Len(N_Body)-Instrrev(N_Body,";"))<400then
N_Body=Left(N_Body,InstrRev(N_Body,";"))
elseifInstrrev(N_Body,",")>0and(Len(N_Body)-Instrrev(N_Body,","))<400then
N_Body=Left(N_Body,InstrRev(N_Body,","))
elseifInstrrev(N_Body,".")>0and(Len(N_Body)-Instrrev(N_Body,"."))<400then
N_Body=Left(N_Body,InstrRev(N_Body,"."))
endif
endif
EndIf
EndIf
endif
Endif
N_Len=Len(N_Body)
I_Body=Mid(I_Body,N_Len+1)
B_Len=Len(I_Body)
Else
N_Body=I_Body
T_Loop=false
EndIf
Addtodatabase
Exec_prc_Content_InsI_Forder,I_Topic,I_Title,I_Source,N_Body,i_ispic,i_pic,i_ishot,I_Keyword,B_Pages
这里一个function,你能够本人处置,归正了局有两个,一个是body,一个是b_pages,就是页码。
B_Pages=B_Pages+1
Loop
%>
<html>
<head>
<metaname="GENERATOR"content="MicrosoftFrontPage5.0">
<metaname="ProgId"content="FrontPage.Editor.Document">
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title>新建网页1</title>
<linkrel="stylesheet"type="text/CSS"href="../CSS/default.css">
</head>
<body>
<divalign="center">
<center>
<tableborder=1width="300"height="128"bordercolor="#000000"cellspacing="0"cellpadding="0"style="border-collapse:collapse"><tr>
<tdbgcolor="#DEDBD6"height="31">
录进乐成</td></tr><tr><tdheight="96">
<palign="center">此文章共分<%=B_Pages-1%>页
</td></tr></table>
</center>
</div>
<script>
top.main_top.location.reload();
</script>
</body>对用户来说可预见费用、节约费用,可以做到花少钱办大事。由于省去了购买软件和硬件等的前期费用,用户可以租用较高级的应用软件。ASP的收费是根据软件的类型、客制化程度、用户数量、服务期限来定的,对客户来说这笔费用是可以预见的。方便于客户应用软件的升级。 |
|