ASP编程教程技巧综合大全(48)
2015-10-4编辑:ljnbset
asp常常用到的一些东西,
<%=Request.ServerVariables("remote_addr")%>
FOR each item in Request.form
tempvalue=trim(Request(item))
tempvalue=Replace(tempvalue,chr(13)&chr(10),"
")
tempvalue=Replace(tempvalue,"
","
")
if tempvalue="" then tempvalue=0
Execute item&"="""&tempvalue&""""
''response.write item&"="&tempvalue&"
"
next
''response.write request("id")
''response.end
if ="" then
response.write "
"
response.write "
"
response.end
end if
sql="select max(id) from pack"
set RS=conn.execute(sql)
if isnull(RS(0)) then
id=1
else
id=RS(0)+1
end if
set rs=nothing