主题:  chr(34)是什么意思?

xialfeihong

职务:普通成员
等级:1
金币:0.0
发贴:35
#12005/11/1 15:22:12
各位高手帮忙看一下这段代码中的hf.write "Const SaveUpFilesPath=" & chr(34) & "UploadFile" & chr(34) & " '存放上传文件的目录" & vbcrlf

里的chr(34)是什么意思?谢了




<%
set fso=Server.CreateObject("Scripting.FileSystemObject"
    set hf=fso.CreateTextFile(Server.mappath("../inc/config.asp",true)
    hf.write "<" & "%" & vbcrlf
    hf.write "Const MaxFileSize=" & chr(34) & trim(request("MaxFileSize") & chr(34) & " '上传文件大小限制" & vbcrlf
    hf.write "Const SaveUpFilesPath=" & chr(34) & "UploadFile" & chr(34) & " '存放上传文件的目录" & vbcrlf
    hf.write "Const UpFileType=" & chr(34) & trim(request("UpFileType") & chr(34) & " '允许的上传文件类型" & vbcrlf
    hf.write "Const byteType=" & chr(34) & trim(request("byteType") & chr(34) & " '留言本屏蔽词语" & vbcrlf
    hf.write "%" & ">"
    hf.close
    set hf=nothing
    set fso=nothing
%>



缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
#22005/11/1 15:37:03
Response.write chr(34)



不是高手

职务:普通成员
等级:3
金币:5.0
发贴:1352
#32005/11/1 16:36:55
表示ASCII值是34的那个字符

那个字符是双引号