编程10000问

关注公众号 jb51net

关闭
首页 > 网络编程 > 编程10000问 >

如何判断发言是否为空?

作者:

如何判断发言是否为空?

if len(usersays)<>0 then 
session("whoto")=request.form("whoto") 
session("action")=request.form("action") 
if instr(usersays,chr(39))>0 then 
usersays=replace(usersays,chr(39),"\"&chr(39)) 
end if 
if instr(usersays,chr(34))>0 then 
usersays=replace(usersays,chr(34),"\"&chr(34)) 
end if 

application.lock 

 

[1]

阅读全文