Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
1 Posted Topic
Re: IIS URL decoding
[code] Function urlDecode(input) inp = Replace(input,"/","%2F") set conn = Server.CreateObject("MSXML2.ServerXMLHTTP") conn.setOption(2) = SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS conn.open "GET", "http://www.neoturk.net/urldecode.asp?url=" & inp, False conn.send "" urlDecode = conn.ResponseText End Function[/code] To speed this up, just create a table on your db for decoded and encoded urls and read them on global.asa application.on_start section. Later …
The End.
gdarcan