1 or many ASP files??

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

  1. #1

    Default 1 or many ASP files??

    Hi All

    Just trying to clear my cluttered mind and wondering if you can help.

    IYHO, if I have say 10 different product categories that extract their data
    from say 10 text files or an Access DB, is it more efficient to have an ASP
    for each product category to query each section or 1 which parses the lot??

    The only reason I am asking is for multiple user access I have this strange
    belief that if 1 page is getting requested and queried by 10 simultaneous
    visitors then 'spreading the load' on different pages would help.

    Is my logic correct or do the ISP fairies have this in hand??

    Many thanks.

    Rgds

    Laphan


    Laphan Guest

  2. Similar Questions and Discussions

    1. Any way to programatically convert Image PDF files to OCR searchable PDF files?
      Hi, I have Adobe Acrobat Reader 7.0 Standard and was wondering if via using Visual Basic there was any way to programatically convert Image PDF...
    2. Urgent: Online files accessing local files Issue
      Hi.. We are working on a online project where we have some 600 MB videos. The complete project is made using flash & HTML.
    3. .PDF files (as Mail attachments) areautomatically converted to .MIM files.
      I send .pdf attachments from Mac (via Mail) and a PC user cannot open the files because they are converted to .MIM (I assume this is MIME)....
    4. Preserving links between Illustrator files and image files during system upgrade
      Client is a design firm with thousands of Illustrator files spread across about five non-RAID external SCSI drives, most with partitions, attached to...
    5. Problems: uploading files have Chinese named files
      Hi everyone, I try to upload file by using asp.net, code like that: <script language="VB" runat="server"> Sub Upload(Source As Object, e As...
  3. #2

    Default 1 or many ASP files??

    Hi All

    Just trying to clear my cluttered mind and wondering if you can help.

    IYHO, if I have say 10 different product categories that extract their data
    from say 10 text files or an Access DB, is it more efficient to have an ASP
    for each product category to query each section or 1 which parses the lot??

    The only reason I am asking is for multiple user access I have this strange
    belief that if 1 page is getting requested and queried by 10 simultaneous
    visitors then 'spreading the load' on different pages would help.

    Is my logic correct or do the ISP fairies have this in hand??

    Many thanks.

    Rgds

    Laphan


    Laphan Guest

  4. #3

    Default Re: 1 or many ASP files??

    No, don't think of the page as a "person" doing the work. Regardless of how
    many pages you have, the load is always proportional to the number of
    requests. I would code it as one page because it is easier to develop, and
    in case any changes -- track and maintain. If you spread it across ten
    pages, you are just increasing the redundancy.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Laphan" <news@FrozenMoles.co.uk> wrote in message
    news:biqm9u$jrn$1@hercules.btinternet.com...
    > Hi All
    >
    > Just trying to clear my cluttered mind and wondering if you can help.
    >
    > IYHO, if I have say 10 different product categories that extract their
    data
    > from say 10 text files or an Access DB, is it more efficient to have an
    ASP
    > for each product category to query each section or 1 which parses the
    lot??
    >
    > The only reason I am asking is for multiple user access I have this
    strange
    > belief that if 1 page is getting requested and queried by 10 simultaneous
    > visitors then 'spreading the load' on different pages would help.
    >
    > Is my logic correct or do the ISP fairies have this in hand??
    >
    > Many thanks.
    >
    > Rgds
    >
    > Laphan
    >
    >

    Manohar Kamath [MVP] Guest

  5. #4

    Default Re: 1 or many ASP files??

    No, don't think of the page as a "person" doing the work. Regardless of how
    many pages you have, the load is always proportional to the number of
    requests. I would code it as one page because it is easier to develop, and
    in case any changes -- track and maintain. If you spread it across ten
    pages, you are just increasing the redundancy.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Laphan" <news@FrozenMoles.co.uk> wrote in message
    news:biqm9u$jrn$1@hercules.btinternet.com...
    > Hi All
    >
    > Just trying to clear my cluttered mind and wondering if you can help.
    >
    > IYHO, if I have say 10 different product categories that extract their
    data
    > from say 10 text files or an Access DB, is it more efficient to have an
    ASP
    > for each product category to query each section or 1 which parses the
    lot??
    >
    > The only reason I am asking is for multiple user access I have this
    strange
    > belief that if 1 page is getting requested and queried by 10 simultaneous
    > visitors then 'spreading the load' on different pages would help.
    >
    > Is my logic correct or do the ISP fairies have this in hand??
    >
    > Many thanks.
    >
    > Rgds
    >
    > Laphan
    >
    >

    Manohar Kamath [MVP] Guest

  6. #5

    Default Re: 1 or many ASP files??

    Hi Manohar

    Is this a definite?

    I need to know because I spent 7 hours making about 100 product pages
    originally, then 3 hours making it a single product page site, then 5 hours
    updating another set of 100 pages thinking it was this.

    I need to make sure so that I can work from this.

    Thanks

    Laphan


    Manohar Kamath [MVP] <mkamath@TAKETHISOUTkamath.com> wrote in message
    news:eZAgQ6xbDHA.736@TK2MSFTNGP09.phx.gbl...
    No, don't think of the page as a "person" doing the work. Regardless of how
    many pages you have, the load is always proportional to the number of
    requests. I would code it as one page because it is easier to develop, and
    in case any changes -- track and maintain. If you spread it across ten
    pages, you are just increasing the redundancy.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Laphan" <news@FrozenMoles.co.uk> wrote in message
    news:biqm9u$jrn$1@hercules.btinternet.com...
    > Hi All
    >
    > Just trying to clear my cluttered mind and wondering if you can help.
    >
    > IYHO, if I have say 10 different product categories that extract their
    data
    > from say 10 text files or an Access DB, is it more efficient to have an
    ASP
    > for each product category to query each section or 1 which parses the
    lot??
    >
    > The only reason I am asking is for multiple user access I have this
    strange
    > belief that if 1 page is getting requested and queried by 10 simultaneous
    > visitors then 'spreading the load' on different pages would help.
    >
    > Is my logic correct or do the ISP fairies have this in hand??
    >
    > Many thanks.
    >
    > Rgds
    >
    > Laphan
    >
    >



    Laphan Guest

  7. #6

    Default Re: 1 or many ASP files??

    Hi Manohar

    Is this a definite?

    I need to know because I spent 7 hours making about 100 product pages
    originally, then 3 hours making it a single product page site, then 5 hours
    updating another set of 100 pages thinking it was this.

    I need to make sure so that I can work from this.

    Thanks

    Laphan


    Manohar Kamath [MVP] <mkamath@TAKETHISOUTkamath.com> wrote in message
    news:eZAgQ6xbDHA.736@TK2MSFTNGP09.phx.gbl...
    No, don't think of the page as a "person" doing the work. Regardless of how
    many pages you have, the load is always proportional to the number of
    requests. I would code it as one page because it is easier to develop, and
    in case any changes -- track and maintain. If you spread it across ten
    pages, you are just increasing the redundancy.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Laphan" <news@FrozenMoles.co.uk> wrote in message
    news:biqm9u$jrn$1@hercules.btinternet.com...
    > Hi All
    >
    > Just trying to clear my cluttered mind and wondering if you can help.
    >
    > IYHO, if I have say 10 different product categories that extract their
    data
    > from say 10 text files or an Access DB, is it more efficient to have an
    ASP
    > for each product category to query each section or 1 which parses the
    lot??
    >
    > The only reason I am asking is for multiple user access I have this
    strange
    > belief that if 1 page is getting requested and queried by 10 simultaneous
    > visitors then 'spreading the load' on different pages would help.
    >
    > Is my logic correct or do the ISP fairies have this in hand??
    >
    > Many thanks.
    >
    > Rgds
    >
    > Laphan
    >
    >



    Laphan Guest

  8. #7

    Default Re: 1 or many ASP files??

    Laphan wrote:

    [performance]
    >
    > I need to know because I spent 7 hours making about 100 product pages
    > originally, then 3 hours making it a single product page site, then 5
    > hours updating another set of 100 pages thinking it was this.
    >
    The issues you are facing are directly related to the poor performance of
    the server your site is on. I know you know this already - we have
    discussed it several times before. Move your sites to a better service and
    save yourself the pain.

    --
    William Tasso - [url]http://WilliamTasso.com[/url]


    William Tasso Guest

  9. #8

    Default Re: 1 or many ASP files??

    Laphan wrote:

    [performance]
    >
    > I need to know because I spent 7 hours making about 100 product pages
    > originally, then 3 hours making it a single product page site, then 5
    > hours updating another set of 100 pages thinking it was this.
    >
    The issues you are facing are directly related to the poor performance of
    the server your site is on. I know you know this already - we have
    discussed it several times before. Move your sites to a better service and
    save yourself the pain.

    --
    William Tasso - [url]http://WilliamTasso.com[/url]


    William Tasso Guest

  10. #9

    Default Re: 1 or many ASP files??

    Yes, most definitely.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Laphan" <news@FrozenMoles.co.uk> wrote in message
    news:biqvbq$js4$2@titan.btinternet.com...
    > Hi Manohar
    >
    > Is this a definite?
    >
    > I need to know because I spent 7 hours making about 100 product pages
    > originally, then 3 hours making it a single product page site, then 5
    hours
    > updating another set of 100 pages thinking it was this.
    >
    > I need to make sure so that I can work from this.
    >
    > Thanks
    >
    > Laphan
    >
    >
    > Manohar Kamath [MVP] <mkamath@TAKETHISOUTkamath.com> wrote in message
    > news:eZAgQ6xbDHA.736@TK2MSFTNGP09.phx.gbl...
    > No, don't think of the page as a "person" doing the work. Regardless of
    how
    > many pages you have, the load is always proportional to the number of
    > requests. I would code it as one page because it is easier to develop, and
    > in case any changes -- track and maintain. If you spread it across ten
    > pages, you are just increasing the redundancy.
    >
    > --
    > Manohar Kamath
    > Editor, .netBooks
    > [url]www.dotnetbooks.com[/url]
    >
    >
    > "Laphan" <news@FrozenMoles.co.uk> wrote in message
    > news:biqm9u$jrn$1@hercules.btinternet.com...
    > > Hi All
    > >
    > > Just trying to clear my cluttered mind and wondering if you can help.
    > >
    > > IYHO, if I have say 10 different product categories that extract their
    > data
    > > from say 10 text files or an Access DB, is it more efficient to have an
    > ASP
    > > for each product category to query each section or 1 which parses the
    > lot??
    > >
    > > The only reason I am asking is for multiple user access I have this
    > strange
    > > belief that if 1 page is getting requested and queried by 10
    simultaneous
    > > visitors then 'spreading the load' on different pages would help.
    > >
    > > Is my logic correct or do the ISP fairies have this in hand??
    > >
    > > Many thanks.
    > >
    > > Rgds
    > >
    > > Laphan
    > >
    > >
    >
    >
    >
    >

    Manohar Kamath [MVP] Guest

  11. #10

    Default Re: 1 or many ASP files??

    Yes, most definitely.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Laphan" <news@FrozenMoles.co.uk> wrote in message
    news:biqvbq$js4$2@titan.btinternet.com...
    > Hi Manohar
    >
    > Is this a definite?
    >
    > I need to know because I spent 7 hours making about 100 product pages
    > originally, then 3 hours making it a single product page site, then 5
    hours
    > updating another set of 100 pages thinking it was this.
    >
    > I need to make sure so that I can work from this.
    >
    > Thanks
    >
    > Laphan
    >
    >
    > Manohar Kamath [MVP] <mkamath@TAKETHISOUTkamath.com> wrote in message
    > news:eZAgQ6xbDHA.736@TK2MSFTNGP09.phx.gbl...
    > No, don't think of the page as a "person" doing the work. Regardless of
    how
    > many pages you have, the load is always proportional to the number of
    > requests. I would code it as one page because it is easier to develop, and
    > in case any changes -- track and maintain. If you spread it across ten
    > pages, you are just increasing the redundancy.
    >
    > --
    > Manohar Kamath
    > Editor, .netBooks
    > [url]www.dotnetbooks.com[/url]
    >
    >
    > "Laphan" <news@FrozenMoles.co.uk> wrote in message
    > news:biqm9u$jrn$1@hercules.btinternet.com...
    > > Hi All
    > >
    > > Just trying to clear my cluttered mind and wondering if you can help.
    > >
    > > IYHO, if I have say 10 different product categories that extract their
    > data
    > > from say 10 text files or an Access DB, is it more efficient to have an
    > ASP
    > > for each product category to query each section or 1 which parses the
    > lot??
    > >
    > > The only reason I am asking is for multiple user access I have this
    > strange
    > > belief that if 1 page is getting requested and queried by 10
    simultaneous
    > > visitors then 'spreading the load' on different pages would help.
    > >
    > > Is my logic correct or do the ISP fairies have this in hand??
    > >
    > > Many thanks.
    > >
    > > Rgds
    > >
    > > Laphan
    > >
    > >
    >
    >
    >
    >

    Manohar Kamath [MVP] 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