ASP uses FSO to read the template code

Source: Internet
Author: User


M_Root is the file name. You can use relative paths.
Call example:
Response. Write (LoadFile ("Test.htm "))

Function LoadFile (m_Root)
Dim Filename, fso, hndFile
Filename = m_Root
If Right (Filename, 1) <> "/" And Right (Filename, 1) <> "\" Then Filename = Filename &"/"
Filename = Server. MapPath (Filename & m_FileName)
Set fso = CreateObject ("Scripting. FileSystemObject ")
If Not fso. FileExists (Filename) Then ShowError ("template file" & m_FileName & "does Not exist! ")
Set hndFile = fso. OpenTextFile (Filename)
LoadFile = hndFile. ReadAll
Set hndFile = Nothing
Set fso = Nothing
If LoadFile = "" Then ShowError ("the template file cannot be read" & m_FileName & "or the file is empty! ")
End Function

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.