以文本方式查看主题

-  智睿软件_技术交流论坛  (http://zhirui.net/bbs/index.asp)
--  Web程序开发  (http://zhirui.net/bbs/list.asp?boardid=22)
----  运用Split将多条记录写入数据库   (http://zhirui.net/bbs/dispbbs.asp?boardid=22&id=14)

--  作者:zhirui
--  发布时间:2009-10-15 07:11:42
--  运用Split将多条记录写入数据库
<%
dim a,b
a=request.form("checked")
b=Split(a,",")
For i=0 To ubound(b)
conn.execute ("insert into 保险管理 (uid,险种) values (\'"&b(i)&"\',\'"&request.form("select")&"\'")
next
%>
Split()

函数将一个字符串分割并返回分割结果

表达式 Split (S[,d])

实例:<%V= Split("A,B,C",",")
For I = 0 To Ubound(V)
Response.Write V(I)
Next
%>

返回结果: A B C

--  作者:zhirui
--  发布时间:2009-07-15 14:00:12
--  
mystr="1,2,3,4,5" mystr=split(mystr,",") for i=0 to ubound(mystr) response.write mystr(i) next --------------------------------------------------------------- Split 函数 语言参考 版本 2 请参阅 -------------------------------------------------------------------------------- 描述 返回基于 0 的一维数组,其中包含指定数目的子字符串。 语法 Split(expression[, delimiter[, count[, start]]]) Split 函数的语法有以下参数: 参数 描述 expression 必选。字符串表达式,包含子字符串和分隔符。如果 expression 为零长度字符串,Split 返回空数组,即不包含元素和数据的数组。 delimiter 可选。用于标识子字符串界限的字符。如果省略,使用空格 ("") 作为分隔符。如果 delimiter 为零长度字符串,则返回包含整个 expression 字符串的单元素数组。 count 可选。被返回的子字符串数目,-1 指示返回所有子字符串。 compare 可选。指示在计算子字符串时使用的比较类型的数值。有关数值,请参阅“设置”部分。 设置 compare 参数可以有以下值: 常数 值 描述 vbBinaryCompare 0 执行二进制比较。 vbTextCompare 1 执行文本比较。 vbDatabaseCompare 2 执行基于数据库(在此数据库中执行比较)中包含的信息的比较。 -------------------------------------------------------------------------------- --------------------------------------------------------------- Response.Write ( split("1,2",",") ); ---------------- Out: 12 --------------------------------------------------------------- Dim MyString, MyArray, Msg MyString = "VBScriptXisXfun!" MyArray = Split(MyString, "x", -1, 1) \' MyArray(0) 包含 "VBScript"。 \' MyArray(1) 包含 "is"。 \' MyArray(2) 包含 "fun!"。 Msg = MyArray(0) & " " & MyArray(1) Msg = Msg & " " & MyArray(2) MsgBox Msg --------------------------------------------------------------- 这个问题以前提过的哦?^_^ http://expert.csdn.net/Expert/topic/1990/1990136.xml?temp=.3922846 --------------------------------------------------------------- 用错了,抱歉: str=split("1,2",",") response.write str(1)&str(2) ------------- Out: 12 --------------------------------------------------------------- 上面的Str(2)是0 //过滤相应词语。
--  作者:zhirui
--  发布时间:2012-09-24 10:08:39
--  
<% Function getIP()
   
On Error Resume Next
   
dim dl_ip : dl_ip = Request.ServerVariables("HTTP_X_FORWARDED_FOR") \'代理ip
    dim my_ip : my_ip = Request.ServerVariables("REMOTE_ADDR") \'实际ip
    dim strIPAddrs
   
if dl_ip = "" or InStr(dl_ip,"unknown") > 0 Then
        strIPAddrs
= my_ip
   
elseif InStr(dl_ip,",") > 0 Then
        strIPAddrs
= Mid(dl_ip,1,InStr(dl_ip,",")-1)
   
elseif InStr(dl_ip,";") > 0 Then
        strIPAddrs
= Mid(dl_ip,1,InStr(dl_ip,";")-1)
   
else
        strIPAddrs
= dl_ip
   
end if
    getIP
= Trim(Mid(strIPAddrs, 1, 30))
End Function
Dim IP : IP = getIP()
IP
= Split(IP,".")
If IP(0)=219 and IP(1)=128 Then
    Response.Write
"登入成功"
Else
    Response.Write
"登入失败"
End if
%
>

--  作者:zhirui
--  发布时间:2012-09-24 10:09:43
--  
<%
Dim MyStr,ip
ip=request.ServerVariables("REMOTE_ADDR")
MyStr=Split(ip,".") \'以空格为分界符拆分
if MyStr(0)=219 and MyStr(1)=128 then
response.Write "欢迎光临"
else
response.Write "登入失败"
end if
%>