马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对用户来说可预见费用、节约费用,可以做到花少钱办大事。由于省去了购买软件和硬件等的前期费用,用户可以租用较高级的应用软件。ASP的收费是根据软件的类型、客制化程度、用户数量、服务期限来定的,对客户来说这笔费用是可以预见的。方便于客户应用软件的升级。函数人人在做某种数据显现的时分是否是常常碰到如许的情形,太年夜的数字显现成迷信计数法,而比小数则显现成.555如许,十分不美妙,能够用以下小函数弄它
functionsonic(tnum)
ifcsng(tnum)>0then
getlar=0
ifinstr(tnum,"E")>1then
tnum=tnum/10000
getlar=1
else
ifinstr(tnum,".")<1then
tnum=cstr(tnum)&"."
endif
ifinstr(tnum,".")=1then
tnum="0"+cstr(tnum)
endif
endif
ifgetlar=0then
sonic=left(tnum&"00",instr(tnum,".")+2)
else
sonic=left(tnum&"00",instr(tnum,".")+2)+"万"
endif
elseifcsng(tnum)<0then
tnum=-csng(tnum)
ifinstr(tnum,".")<1then
tnum=cstr(tnum)&"."
endif
ifinstr(tnum,".")=1then
tnum="0"+cstr(tnum)
endif
sonic="-"&left(tnum&"00",instr(tnum,".")+2)
else
sonic="0.00"
endif
endfunction
很复杂的哦</p>asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。 |