Results 1 to 3 of 3

Thread: need .asp experts help

  1. #1
    Junior Member
    Join Date
    Oct 2002
    Posts
    5

    need .asp experts help

    I am trying to figure out how to access the link that this .aspx page passes as an arguement. The link is:
    http://mls.eisenlauerteam.com/Defaul...aar.rapmls.com -> and so forth.
    I'm guessing all the percents & numbers are html code for special characters but I haven't been able to find anything.
    I'm trying to compare the info returned by this parameter to the public site and wether or not eisenlauerteam.com has changed the output at all.
    Thanks for any help.

  2. #2
    Ninja Code Monkey
    Join Date
    Nov 2001
    Location
    Washington State
    Posts
    1,027
    It's simply url encoding of the :// chars. http://www.blooberry.com/indexdot/ht...rlencoding.htm

    http<char><char><char>dmaar.rapmls.com

    http://dmaar.rapmls.com
    "When I get a little money I buy books; and if any is left I buy food and clothes." - Erasmus
    "There is no programming language, no matter how structured, that will prevent programmers from writing bad programs." - L. Flon
    "Mischief my ass, you are an unethical moron." - chsh
    Blog of X

  3. #3
    Just Another Geek
    Join Date
    Jul 2002
    Location
    Rotterdam, Netherlands
    Posts
    3,401
    Usually it's just a simple ASCII code in hex. I.e.

    %2e = 0x2e = 46 = .
    %40 = 0x40 = 64 = @

    etc..
    Oliver's Law:
    Experience is something you don't get until just after you need it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •