Hiding data from screen scrapers and bots

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Hiding data from screen scrapers and bots

    I was hoping someone here would know something about screen scrapers,
    spiders, bots. Perhaps it's a stupid question, but here it goes
    anyway...

    Is there any way to make data harder for a screen scraper, spider or bot to
    collect?

    I don't mind people going to a page and looking at the data I have on the
    page, obviously, or I wouldn't be putting it on a web page in the first
    place. I just want to make it as difficult as possible (within reason) for
    automated processes from gathering this info for SPAM (email & telephone)

    My first instinct is to do something like this:
    <table cellpadding="0" cellspacing="0">
    <tr>
    <td>D</td>
    <td>a</td>
    <td>t</td>
    <td>a</td>
    <td>&nbsp;</td>
    <td>T</td>
    <td>o</td>
    <td>&nbsp;</td>
    <td>H</td>
    <td>i</td>
    <td>d</td>
    <td>e</td>
    </tr>

    My other idea was to use the method above, but instead of using the
    characters in each cell, I would use the &#XXX; code for each character.

    Any ideas?

    Thanks
    Brian W

    BTW, I don't want to use JPGs of GIFs


    Brian W Guest

  2. Similar Questions and Discussions

    1. Defeating Form 'bots
      Although I've had forms on my site for several years, have recently been receiving too many forms filled out by robots (according to my domain...
    2. How to identify spiders and bots
      Hello, I'm thinking of this too. I've made a component function wich determines bots by the type: <cffunction name="isBot" hint="?????????? ??...
    3. hiding fields in a record that have no data
      I am assuming this is pretty simple to do, but I am not sure how. I have an asp intranet site I am building. I have a one admin form that allows...
    4. Hiding Text when MySQL has no data value
      When a user signs into my website, he/she sees the following personalized information: Name: sample user Birthdate: 01/01/2005 Favorite color:...
    5. Making a Screen load on top of another screen in MX 2004
      I have a mian form with several child screens underneath. I am trying to figure out how to make some sort of hierarchy for all of the sibling...
  3. #2

    Default RE: Hiding data from screen scrapers and bots

    Hi Brian,

    I think you could also have a random number of rows at the top of the table
    with a height of zero. This would make it impossible for some scraper to
    know where a specific piece of information is.

    Have a nice day.

    Regards,

    HuangTM
    Microsoft Online Partner Support
    MCSE/MCSD

    Get Secure! ¨C [url]www.microsoft.com/security[/url]
    This posting is provided ¡°as is¡± with no warranties and confers no rights.


    Tian Min Huang Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139