Ask a Question related to ASP Database, Design and Development.
-
Laphan #1
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
-
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... -
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. -
.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).... -
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... -
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... -
Laphan #2
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
-
Manohar Kamath [MVP] #3
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...data> 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 theirASP> from say 10 text files or an Access DB, is it more efficient to have anlot??> for each product category to query each section or 1 which parses thestrange>
> The only reason I am asking is for multiple user access I have this> 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
-
Manohar Kamath [MVP] #4
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...data> 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 theirASP> from say 10 text files or an Access DB, is it more efficient to have anlot??> for each product category to query each section or 1 which parses thestrange>
> The only reason I am asking is for multiple user access I have this> 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
-
Laphan #5
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...data> 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 theirASP> from say 10 text files or an Access DB, is it more efficient to have anlot??> for each product category to query each section or 1 which parses thestrange>
> The only reason I am asking is for multiple user access I have this> 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
-
Laphan #6
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...data> 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 theirASP> from say 10 text files or an Access DB, is it more efficient to have anlot??> for each product category to query each section or 1 which parses thestrange>
> The only reason I am asking is for multiple user access I have this> 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
-
William Tasso #7
Re: 1 or many ASP files??
Laphan wrote:
[performance]
The issues you are facing are directly related to the poor performance of>
> 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 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
-
William Tasso #8
Re: 1 or many ASP files??
Laphan wrote:
[performance]
The issues you are facing are directly related to the poor performance of>
> 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 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
-
Manohar Kamath [MVP] #9
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...hours> 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 5how> 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 ofsimultaneous> 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...> data> > 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> ASP> > from say 10 text files or an Access DB, is it more efficient to have an> lot??> > for each product category to query each section or 1 which parses the> strange> >
> > The only reason I am asking is for multiple user access I have this> > belief that if 1 page is getting requested and queried by 10>> > 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
-
Manohar Kamath [MVP] #10
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...hours> 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 5how> 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 ofsimultaneous> 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...> data> > 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> ASP> > from say 10 text files or an Access DB, is it more efficient to have an> lot??> > for each product category to query each section or 1 which parses the> strange> >
> > The only reason I am asking is for multiple user access I have this> > belief that if 1 page is getting requested and queried by 10>> > 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



Reply With Quote

