Creating a URL still exists page/util

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Creating a URL still exists page/util

    Hi All

    Quite familiar with ASP and JavaScript and wondered if there is a method out
    there that allows me to create a web page util to see if URL links are still
    valid.

    In other words I've created a system whereby a user can add their own
    links/urls page, but they want to periodically check whether all of these
    links by executing a multi-check.

    My theoretical thought on this would be that the script would check if it
    receives a 404 on each page request and mark a flag if and when it gets it,
    but as to how I would do this in ASP or JavaScript, I have no idea.

    Have you seen anything like this before?

    Thanks

    Laphan



    Laphan Guest

  2. Similar Questions and Discussions

    1. SNMP::Util
      Hi There, Have been struggling whole afternoon on how to get SNMP::Util working. My (wrong??, hope so) conclusion is that it is not compatible...
    2. Check to see if a page exists?
      Is there a way that I can check to see if a page exists? I was thinking it might be possible with CFHTTP or something along those lines but am not...
    3. method name exists, property value exists, calling method fails
      I have a class object I am calling in another class: class Stuff { var $myObj; function Stuff($myObj) { $this->myObj = $myObj; }
    4. List::Util / arrays
      On Aug 5, Jakob Kofoed said: Are those line numbers actually in the file too? If so, that might cause problems for you. At this point,...
    5. programatic CPU util
      I am looking for the way to programaticly determine CPU utilization under AIX (5L would be sufficient) to add to netperf. On linux netperf uses...
  3. #2

    Default Re: Creating a URL still exists page/util

    you would use the xml parser (google it) to go check the page.
    Complications arrise though when you take into consideration that sites and
    servers sometimes go down.

    So you really want to design a system that check a site a few times over a
    period of time before you remove a link


    "Laphan" <info@SpamMeNot.com> wrote in message
    news:OanyqI9CGHA.1288@TK2MSFTNGP09.phx.gbl...
    > Hi All
    >
    > Quite familiar with ASP and JavaScript and wondered if there is a method
    > out
    > there that allows me to create a web page util to see if URL links are
    > still
    > valid.
    >
    > In other words I've created a system whereby a user can add their own
    > links/urls page, but they want to periodically check whether all of these
    > links by executing a multi-check.
    >
    > My theoretical thought on this would be that the script would check if it
    > receives a 404 on each page request and mark a flag if and when it gets
    > it,
    > but as to how I would do this in ASP or JavaScript, I have no idea.
    >
    > Have you seen anything like this before?
    >
    > Thanks
    >
    > Laphan
    >
    >
    >

    Kyle Peterson 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