Click here to Skip to main content
15,885,546 members
Articles / Web Development / HTML

Get File name from URL Path - ASP Classic

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
12 Feb 2011CPOL 35.3K   7  
Get File name from URL Path - ASP Classic

The following VBScript function can be used in an ASP legacy application to extract the file name from a request.

VB.NET
public function GetFileName()
    dim files, url, segments

    'get then current url from the server variables
    url = Request.ServerVariables("path_info")

    segments = split(url,"/")

    'read the last segment
    url = segments(ubound(segments))
    GetFileName = url
end function 

The function returns the last segment of the path information or URL. These are some examples:

URLFile Name
http://mydomain/products/default.aspDefault.asp
http://mydomain/products/The default page in that directory(check web server settings)
http://mydomain/default.aspDefault.asp

This is useful when there is the need of an application rule associated to the file name. For example, a new rule may need to be created on your legacy application because robots are exploiting a security hole in your application. You may want to protect some pages that can be used to update information , and you want to add a security policy to only those pages. This function can be used to know the target page on the request and apply the security rule if the page has been configured to be protected.

I hope this is useful to someone.

Thanks.

This article was originally posted at http://ozkary.blogspot.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect OG-BITechnologies
United States United States
Software engineer, author & speaker who enjoys mentoring, learning, speaking and sharing with others about software development technologies. Microsoft MVP.

My Blog

Comments and Discussions

 
-- There are no messages in this forum --