ASP implementation display spreadsheet data in the Web (iii) Create a file selection list (turn)

Source: Internet
Author: User
web| Create | spreadsheet | data | Display the last introduction to the code to create a file selection list, where you use the built-in FileSystem object to obtain information about files and folders.

For simplicity, the routine assumes that the spreadsheet file and the ASP file are in the same directory. Get the current directory name by Vserverfolder= Server.MapPath (".") and convert it to a folder object to find the files in the directory. The. GetFolder method for filesystem objects is used as follows:

Set oFs = Server.CreateObject ("Scripting.FileSystemObject")
Set ofolder = Ofs.getfolder (Vserverfolder)
By enumerating the. Files Collection of the Folder object, you can get the files under the folders and limit the file types displayed to Excel. Execute the following html/asp code to create a file selection list:

< select Name= "Xlbook" >
<%
Voptions = ""
For each ofile in Ofolder.files
If ofile.type = "Microsoft Excel Worksheet" Then
Voptions = voptions & "< option >" & _
Server.HTMLEncode (ofile.name) & "</option >
End If
Next
Response.Write Voptions
% >
</select >

Again, the actual readx1.asp code is more complicated because there are JavaScript scripts to retrieve the last selection.

Summarize

This article describes how to read an Excel workbook through ADO, and how to use the filesystem of the built-in object. In addition to being widely used in the database field, ADO can handle many different formats of data in a way that is like processing a database. This is just a little bit of the basic functionality of ADO, and there are more and more powerful aspects that need to be developed.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.