asp常用字符处理函数

function get_substring(str,length)
 dim result
 result = str
 if len(str)>length then
  result = left(str,length-1)&"..."
 end if
 get_substring = result
end function

function getpage(page)
 dim result
 if isnull(page) or isempty(page) or (not isnumeric(page)) then
  result =1
 else
  result=abs(cint(page))
 end if
 if result<1 then result=1
 getpage=result
end function

sub jsReturn(wordstr,url)
 if url="" then
 response.Write "<script language=""javascript"">alert("""&wordstr&""");history.go(-1);</script>"
 else
 response.Write "<script language=""javascript"">alert("""&wordstr&""");location.href="""&url&""";</script>"
 end if
 response.End()
end sub
function WchangeNum()
 WchangeNum = "onKeyUp=""value=value.replace(/D+/g,'')"""
end function

时间: 2025-01-03 08:22:06

asp常用字符处理函数的相关文章

[整理版]ASP常用内置函数_应用技巧

函数,就是该语言封装了的一个功能块,以方便用户的调用.比如"now()"在VBScript中就是一个能显示出当前日期和时间的函数.至于具体为什么能显示,则是该语言内核所定的,用户只需明白"now()"就是用来能显示日期时间的.那么,我们当前接触的VBScript还有其他什么功能的函数么? 1,日期/时间函数这些函数包括对"年"."月"."日"."时"."分".&quo

[整理版]ASP常用内置函数

函数 函数,就是该语言封装了的一个功能块,以方便用户的调用.比如"now()"在VBScript中就是一个能显示出当前日期和时间的函数.至于具体为什么能显示,则是该语言内核所定的,用户只需明白"now()"就是用来能显示日期时间的.那么,我们当前接触的VBScript还有其他什么功能的函数么? 1,日期/时间函数这些函数包括对"年"."月"."日"."时"."分".&

小结:MYSQL数据库常用字符处理函数

ASCII(str) 返回字符串str的最左面字符的ASCII代码值.如果str是空字符串,返回0.如果str是NULL,返回NULL. mysql> select ASCII('2');        -> 50mysql> select ASCII(2);        -> 50mysql> select ASCII('dx');        -> 100也可参见ORD()函数. ORD(str) 如果字符串str最左面字符是一个多字节字符,通过以格式((fir

ASP常用日期格式化函数 FormatDate()

核心代码 <% '功能:多功能日期格式化函数 '来源:http://jorkin.reallydo.com/article.asp?id=477 Function FormatDate(sDateTime, sReallyDo) Dim sJorkin sJorkin = GetLocale() If Not IsDate(sDateTime) Then sDateTime = Now() sDateTime = CDate(sDateTime) Select Case UCase(sReall

java中常用字符处理函数

substring() 它有两种形式,第一种是:String substring(int startIndex) 第二种是:String substring(int startIndex,int endIndex) concat() 连接两个字符串 replace() 替换 它有两种形式,第一种形式用一个字符在调用字符串中所有出现某个字符的地方进行替换,形式如下: String replace(char original,char replacement) 例如:String s="Hello&

ASP 非法字符过滤函数_应用技巧

复制代码 代码如下: <% '==============================================================检查提交数据合法性 Function CheckInput()  '--------定义部份------------------  Dim Fy_Post,Fy_Get,Fy_In,Fy_Inf,Fy_Xh,Fy_db,Fy_dbstr,Kill_IP,WriteSql  '自定义需要过滤的字串,用 "|" 分隔  Fy_In 

asp非法字符过滤函数sql防注入

On Error Resume Next Fy_Url=Request.ServerVariables("QUERY_STRING") Fy_a=split(Fy_Url,"&") redim Fy_Cs(ubound(Fy_a)) On Error Resume Next for Fy_x=0 to ubound(Fy_a)  Fy_Cs(Fy_x) = left(Fy_a(Fy_x),instr(Fy_a(Fy_x),"=")-1)

ASP常用的系统配置函数_应用技巧

sub SaveConfig()  dim fso,hf  set fso=Server.CreateObject("Scripting.FileSystemObject")  set hf=fso.CreateTextFile(Server.mappath("../inc/config.asp"),true)  hf.write "<" & "%" & vbcrlf  hf.write "Co

ASP 非法字符过滤函数

复制代码 代码如下: <% '==============================================================检查提交数据合法性 Function CheckInput()  '--------定义部份------------------  Dim Fy_Post,Fy_Get,Fy_In,Fy_Inf,Fy_Xh,Fy_db,Fy_dbstr,Kill_IP,WriteSql  '自定义需要过滤的字串,用 "|" 分隔  Fy_In