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

  1. #1

    Default Is this feasible?

    I'm developing a system that is all database driven. The
    problem I find my self running into is that it will not be
    able to be indexed by search engines. I am aware of third
    party commercial products to make my dynamic pages static,
    but I thought of another solution.

    It is a content management system, the user controls each
    page which comes from a database.

    Now is it feasible (in terms of CPU, time, etc.) to write
    the results of the changes/additions to a text file after
    it is written the database then including the text file in
    the page opposed to the database so that it could be
    indexed?

    Any thoughts would be helpful. Thanks a million!!!
    Shawn Guest

  2. #2

    Default Re: Is this feasible?

    Dynamic pages can be indexed.

    "Shawn" <programming@jards.com> wrote in message
    news:0eda01c36be4$4ba29e90$a401280a@phx.gbl...
    > I'm developing a system that is all database driven. The
    > problem I find my self running into is that it will not be
    > able to be indexed by search engines. I am aware of third
    > party commercial products to make my dynamic pages static,
    > but I thought of another solution.
    >
    > It is a content management system, the user controls each
    > page which comes from a database.
    >
    > Now is it feasible (in terms of CPU, time, etc.) to write
    > the results of the changes/additions to a text file after
    > it is written the database then including the text file in
    > the page opposed to the database so that it could be
    > indexed?
    >
    > Any thoughts would be helpful. Thanks a million!!!

    grw Guest

  3. #3

    Default Re: Is this feasible?

    > Dynamic pages can be indexed.

    Not by several search engines, last time I checked.



    Aaron Bertrand - MVP Guest

  4. #4

    Default Re: Is this feasible?

    Dynamic meaning database driven, not Flash so it can be
    indexed for search engines like google?

    >-----Original Message-----
    >Dynamic pages can be indexed.
    >
    >"Shawn" <programming@jards.com> wrote in message
    >news:0eda01c36be4$4ba29e90$a401280a@phx.gbl...
    >> I'm developing a system that is all database driven.
    The
    >> problem I find my self running into is that it will not
    be
    >> able to be indexed by search engines. I am aware of
    third
    >> party commercial products to make my dynamic pages
    static,
    >> but I thought of another solution.
    >>
    >> It is a content management system, the user controls
    each
    >> page which comes from a database.
    >>
    >> Now is it feasible (in terms of CPU, time, etc.) to
    write
    >> the results of the changes/additions to a text file
    after
    >> it is written the database then including the text file
    in
    >> the page opposed to the database so that it could be
    >> indexed?
    >>
    >> Any thoughts would be helpful. Thanks a million!!!
    >
    >
    >.
    >
    Shawn Guest

  5. #5

    Default Re: Is this feasible?

    Which search engines?

    The ones that count ([url]www.google.com[/url] etc) certainly can (up to a
    point)...otherwise most of Microsoft.com's site wouldn't appear in any of
    their indexes...

    Cheers
    Ken

    "Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message
    news:eZX1po$aDHA.2136@TK2MSFTNGP10.phx.gbl...
    : > Dynamic pages can be indexed.
    :
    : Not by several search engines, last time I checked.
    :
    :
    :


    Ken Schaefer Guest

  6. #6

    Default Re: Is this feasible?

    ASP Pages are static. The content is sent statically to the browser, so how
    does the crawler know it is dynamic other than that it's extension? What is
    the crawler going to do? Refresh and check for content changes?

    A true dynamic page would be something written with javascript or something,
    like 'document.form.value="whatever";'

    Michael C. Gates


    "Shawn" <programming@jards.com> wrote in message
    news:0eda01c36be4$4ba29e90$a401280a@phx.gbl...
    > I'm developing a system that is all database driven. The
    > problem I find my self running into is that it will not be
    > able to be indexed by search engines. I am aware of third
    > party commercial products to make my dynamic pages static,
    > but I thought of another solution.
    >
    > It is a content management system, the user controls each
    > page which comes from a database.
    >
    > Now is it feasible (in terms of CPU, time, etc.) to write
    > the results of the changes/additions to a text file after
    > it is written the database then including the text file in
    > the page opposed to the database so that it could be
    > indexed?
    >
    > Any thoughts would be helpful. Thanks a million!!!
    >

    Michael C. Gates Guest

  7. #7

    Default Re: Is this feasible?

    Google certainly can, they feed Yahoo.
    Thats more than acceptable to me ;-)


    "Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message
    news:eZX1po$aDHA.2136@TK2MSFTNGP10.phx.gbl...
    > > Dynamic pages can be indexed.
    >
    > Not by several search engines, last time I checked.
    >
    >
    >

    grw 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