ASP Random Redirect Script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • invza1
    Registered User
    • Mar 2003
    • 44

    #1

    ASP Random Redirect Script

    Hi everyone and thanks for reading-

    I need a random redirect script.....that simple. Can anyone donate and ASP random redirect script to my cause???

    When I search for this in Google all the download links are dead.

    So it's a free download wondering if anyone had it to give to me........ Thanks again I appreciate everyone for reading this.
  • Materialist
    Confirmed User
    • Aug 2003
    • 739

    #2
    Ok I wrote a script, if you would like me to email it to you please reply with your address.
    Last edited by Materialist; 08-10-2003, 05:40 PM.

    Comment

    • invza1
      Registered User
      • Mar 2003
      • 44

      #3
      Materialist-Thanks for responding but wheres the link????

      Comment

      • Materialist
        Confirmed User
        • Aug 2003
        • 739

        #4
        I had posted it with Mozilla so everything was fine, but I forgot Internet Explorer tries to display the results of executing the script. Email please.

        Comment

        • invza1
          Registered User
          • Mar 2003
          • 44

          #5
          email me at [email protected]

          thanks

          Comment

          • invza1
            Registered User
            • Mar 2003
            • 44

            #6
            email me at [email protected]

            thanks

            Comment

            • rammi
              Confirmed User
              • Jan 2002
              • 161

              #7
              random redirect? ... easy
              create a new file and call it - for example - random.asp
              paste in this code:
              PHP Code:
              <%
              Option Explicit
              Dim strLinks, arrLinks, i
              Randomize
              strLinks ="http://somesite.com|[url]http://somesite2.com[/url]|etc|etc"
              arrLinks = split(strLinks,"|")
              i = ubound(arrLinks)
              i = Int(Rnd(timer) * i)
              Response.Redirect arrLinks(i)
               %> 
              
              and then you can link this script with a href=random.asp
              that's all ... if you need something like this
              Rammi,
              create your own Free toplist
              Trade traffic on Mr. Superporner, The pornstar

              Comment

              • rammi
                Confirmed User
                • Jan 2002
                • 161

                #8
                ouh... it was changed by BBS system... once more the line with URLs may be as this
                strLinks ="somesite.com|somesite2.com|somesite3.com|etc|etc "
                but with "http" before these urls
                Rammi,
                create your own Free toplist
                Trade traffic on Mr. Superporner, The pornstar

                Comment

                • Materialist
                  Confirmed User
                  • Aug 2003
                  • 739

                  #9
                  That isn't what he wanted.
                  He wanted something to trick TGP reviewers. His idea was "direct the reviewers to a good tgp, while sending regular users to a signup page" or something like this.

                  Don't see how that works.

                  Comment

                  • rammi
                    Confirmed User
                    • Jan 2002
                    • 161

                    #10
                    he wrote:
                    I need a random redirect script
                    ... if he need something other, then there is some problem with my english
                    Rammi,
                    create your own Free toplist
                    Trade traffic on Mr. Superporner, The pornstar

                    Comment

                    Working...