如果目标文件存在,下面()语句建立的TextStream对象可以读取文件。A、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",1,True)B、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",1)C、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt")D、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",,True)
如果目标文件存在,下面()语句建立的TextStream对象可以读取文件。
- A、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",1,True)
- B、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",1)
- C、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt")
- D、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",,True)
相关考题:
【问题3】(2分)在图2-2中,如果FTP资源存储在F盘,新建FTP站点的默认主目录为 (4) 。(4)备选答案:A. F:\inetpub\ftproot B. F:\ftpC. F:\ftp\root D. F:\inetpub\wwwroot
在图2-2中,如果FTP资源存储在F盘,新建FFP站点的默认主目录为(4)。A.F:\inetpub\ftproot B.F:\ftpC.F:\ftp\root D.F:\inetpub\wwwroot
在IIS中,系统所选择的默认WEB发布主目录是()。A、C:///Intpub/wwwrootB、D:///Intpub/wwwrootC、C:///Inetpub/wwwrootD、D:///Intepub/wwwroot
如果在chapter1下建立了一个子文件夹images,并且在其中放置了一个图片文件1.jpg,那么以下URL正确的是()。A、http://localhost/asptemp/chapter1/images/1.jpgB、http://127.0.0.1/asptemp/chapter1/images/1.jpgC、http://localhost/inetpub/wwwroot/asptemp/chapter1/images/1.jpgD、http://127.0.0.1/inetpub/wwwroot/asptemp/chapter1/images/1.jpg
如果目标文件不存在,下面()语句能够自动建立文件。A、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",1,True)B、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",2,True)C、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",8,False)D、Set tsm=fso.OpenTextFile("C:///inetpub/wwwroot/asptemp/chapter10/test.txt",1,False)
下面哪一个是正确格式的URL?()A、//ServerA/SharedfilesB、http://www.scut.edu.cn/index.htmlC、10.1.34D、C:///inetPub/wwwroot/index.html
在C盘上安装Windows Server 2003的IIS后,默认网站缺省主目录路径为()A、C:///Inetpub/wwwrootB、C:///Winnt/Inetpub/ftprootC、C:///Inetpub/ftprootD、C:///Winnt/Inetpub/wwwroot
填写适当的内容,以便在当前目录中创建一个名为“test.txt”的文本文件。 %Dim fso , F ’创建FSO对象实例 Set fso = Server.CreateObject() ’创建文件并返回textStream对象 Set F = fso.CreateTextFile(Server.MapPath("./test.txt") ); F.() "Hello" ’向文件中写入字符串后换行 F.() ’向文件中输出1个空行 F.() ’关闭 TextStream对象 %
配置IIS时,设置站点的主目录的位置,下面说法错误的是()。A、只能在本机的c:/inetpub/wwwroot文件夹B、只能在本机操作系统所在磁盘的文件夹C、只能在本机非操作系统所在磁盘的文件夹D、在本机任意位置都可以
假设C:///Inetpub/wwwroot目录被设置为服务器的宿主目录,以下脚本的输出为()。A、C:///Inetpub/wwwroot/asp/data.txtB、C:///Inetpub/wwwroot/asp/asp/data.txtC、C:///Inetpub/wwwroot/data.txtD、系统报错
配置IIS时,设置站点的主目录的位置,下面说法正确的是()。A、 只能在本机的c:/inetpub/wwwroot文件夹。B、 只能在本机操作系统所在磁盘的文件夹。C、 只能在本机非操作系统所在磁盘的文件夹。D、 以上全都是错的。
PWS服务器的默认根目录是()。A、C:///Inetpub/wwwrootB、C:///Inetpub/homepageC、C:///wwwrootD、D:///Inetpub/wwwroot
在下划线上填写适当的内容,以便向当前目录中的文本文件“test.txt”中写入数据 % Dim fso , f , rc rc = ()("txtContent") ’接收表单提交的文本数据 ’创建FSO对象实例 Set fso = ()("Scripting.FileSystemObject") ’创建文件并返回textStream对象,以覆盖方式打开文件 Set f = fso. CreateTextFile (Server.MapPath("./test.txt"),true) ’向文件中写入数据 f. WriteLine rc"()" f. Close ’关闭文件流对象 %
单选题在C盘上安装Windows Server 2003的IIS后,默认网站缺省主目录路径为()AC:///Inetpub/wwwrootBC:///Winnt/Inetpub/ftprootCC:///Inetpub/ftprootDC:///Winnt/Inetpub/wwwroot
单选题在IIS中,系统所选择的默认WEB发布主目录是()。AC:///Intpub/wwwrootBD:///Intpub/wwwrootCC:///Inetpub/wwwrootDD:///Intepub/wwwroot
单选题IIS默认的主目录路径是()。A%SysemDrive%/wwwrootB%SysemDrive%/C%SysemDrive%/wwwroot/inetpubD%SysemDrive%/inetpub/wwwroot
单选题假设C:///Inetpub/wwwroot目录被设置为服务器的宿主目录,以下脚本的输出为()。AC:///Inetpub/wwwroot/asp/data.txtBC:///Inetpub/wwwroot/asp/asp/data.txtCC:///Inetpub/wwwroot/data.txtD系统报错
多选题如果目标文件存在,下面()语句建立的TextStream对象可以读取文件。ASet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,1,True)BSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,1)CSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt)DSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,,True)
单选题如果目标文件不存在,下面()语句能够自动建立文件。ASet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,1,True)BSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,2,True)CSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,8,False)DSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,1,False)
单选题PWS服务器的默认根目录是()。AC:///Inetpub/wwwrootBC:///Inetpub/homepageCC:///wwwrootDD:///Inetpub/wwwroot
单选题下面哪一个是正确格式的URL?()A//ServerA/SharedfilesBhttp://www.scut.edu.cn/index.htmlC10.1.34DC:///inetPub/wwwroot/index.html