Ask a Question related to ASP Database, Design and Development.
-
Mystery #1
Why is my web site so slow?
I have a standard install IIS server running with Windows Authentication on
our Small Business Server at work (1024/512 ADSL). I'm running a small asp
web site that generates pages from our sales database of around 1k per page
(no graphix, just text). I'm using a PDA (HP iPAQ) and a Bluetooth
connection to my GPRS phone to connect to the web (connections between
13-24k).
My initial connect to my index.asp page takes up to 15secs! Subsequent
pages take between 5-10secs to load, even though they are only 1k (or
less!). As a comparison, forum.overclockers.co.uk (a favourite site of
mine!) main index page (without graphicx) only takes 4 secs to load and is a
page size of almost 8k.
So :-
1. Is there some tweaks that I can do to IIS in order for it to respond
quicker (512K upstream connection with zero people on it makes me think
bandwith is not the problem!)
2. Is Windows Authentication creating too much overhead? Should I code my
own logon screens and page check code?
Advice appreciated.
Mystery Guest
-
Site so slow!
Is anyone else having the problem that when you type you do not see what you are typing until you wait and the site catches up with your typing?... -
Slow site with flash
I have a website with flash on it and I cant seem to get it to load fast enough. I need help with working with flash files that will not take a day... -
site loads slow
My site www.puroconjunto.com was created in Purlisher 2002. I had background music (since it is a music site) and the whole works. All of a... -
slow loading web site
Yes it is the reason. Using - File, Export as web page - Pub 2002 writes what MS has coined "filtered html". Using - File, Save as, Web page - Pub... -
Why is my site so slow in 56k?
Chris Jumonville wrote: I'm not on dial-up, but on DSL, 2.7Mbits/sec down. It took me about 1.5 seconds (or maybe less) to load the first page,... -
Ken Schaefer #2
Re: Why is my web site so slow?
You should put a trace on the network (or, do some investigation of various
counters/logfiles, eg timestamps in the IIS logs, run perfmon on the server)
to find out where the bottleneck is.
a) Is the server needing to spin up IIS (maybe no one else has hit the
webserver for a while)
b) Is it a bandwidth issue somewhere between the iPaq and the server?
c) Is your code inefficient?
d) Perhaps it is the iPaq - I know that most pages that would load quite
quickly on a decent desktop machine take much longer to load on my iPaq due
to the reduced computing power available in the iPaq
Cheers
Ken
"Mystery" <mystery@barrysworld.com> wrote in message
news:uIHKJduwDHA.3744@TK2MSFTNGP11.phx.gbl...
: I have a standard install IIS server running with Windows Authentication
on
: our Small Business Server at work (1024/512 ADSL). I'm running a small
asp
: web site that generates pages from our sales database of around 1k per
page
: (no graphix, just text). I'm using a PDA (HP iPAQ) and a Bluetooth
: connection to my GPRS phone to connect to the web (connections between
: 13-24k).
:
: My initial connect to my index.asp page takes up to 15secs! Subsequent
: pages take between 5-10secs to load, even though they are only 1k (or
: less!). As a comparison, forum.overclockers.co.uk (a favourite site of
: mine!) main index page (without graphicx) only takes 4 secs to load and is
a
: page size of almost 8k.
:
: So :-
:
: 1. Is there some tweaks that I can do to IIS in order for it to respond
: quicker (512K upstream connection with zero people on it makes me think
: bandwith is not the problem!)
: 2. Is Windows Authentication creating too much overhead? Should I code my
: own logon screens and page check code?
:
: Advice appreciated.
:
:
Ken Schaefer Guest
-
Mike Florio #3
Re: Why is my web site so slow?
I've seen that happen once when I set the performance property in IIS
manager to < 10,000 hits. Moving it back up to < 100,000 (the default)
fixed it. Even for a very low traffic site...
"Mystery" <mystery@barrysworld.com> wrote in message
news:uIHKJduwDHA.3744@TK2MSFTNGP11.phx.gbl...on> I have a standard install IIS server running with Windows Authenticationasp> our Small Business Server at work (1024/512 ADSL). I'm running a smallpage> web site that generates pages from our sales database of around 1k pera> (no graphix, just text). I'm using a PDA (HP iPAQ) and a Bluetooth
> connection to my GPRS phone to connect to the web (connections between
> 13-24k).
>
> My initial connect to my index.asp page takes up to 15secs! Subsequent
> pages take between 5-10secs to load, even though they are only 1k (or
> less!). As a comparison, forum.overclockers.co.uk (a favourite site of
> mine!) main index page (without graphicx) only takes 4 secs to load and is> page size of almost 8k.
>
> So :-
>
> 1. Is there some tweaks that I can do to IIS in order for it to respond
> quicker (512K upstream connection with zero people on it makes me think
> bandwith is not the problem!)
> 2. Is Windows Authentication creating too much overhead? Should I code my
> own logon screens and page check code?
>
> Advice appreciated.
>
>
Mike Florio Guest
-
Mystery #4
Re: Why is my web site so slow?
Thanks to all for the suggestions. After looking at a number of avenues,
the biggest improvement in speed actually came from switching off windows
user authentication! I'll write my own user authentication system using ASP
so everything should be okay.
Thanks again guys. Thank the Lord for newsgroups !!!! :-)
Mr.E
"Mike Florio" <mike@micro-point.com> wrote in message
news:vtrvh13qqer496@corp.supernews.com...is> I've seen that happen once when I set the performance property in IIS
> manager to < 10,000 hits. Moving it back up to < 100,000 (the default)
> fixed it. Even for a very low traffic site...
>
>
> "Mystery" <mystery@barrysworld.com> wrote in message
> news:uIHKJduwDHA.3744@TK2MSFTNGP11.phx.gbl...> on> > I have a standard install IIS server running with Windows Authentication> asp> > our Small Business Server at work (1024/512 ADSL). I'm running a small> page> > web site that generates pages from our sales database of around 1k per> > (no graphix, just text). I'm using a PDA (HP iPAQ) and a Bluetooth
> > connection to my GPRS phone to connect to the web (connections between
> > 13-24k).
> >
> > My initial connect to my index.asp page takes up to 15secs! Subsequent
> > pages take between 5-10secs to load, even though they are only 1k (or
> > less!). As a comparison, forum.overclockers.co.uk (a favourite site of
> > mine!) main index page (without graphicx) only takes 4 secs to load andmy> a> > page size of almost 8k.
> >
> > So :-
> >
> > 1. Is there some tweaks that I can do to IIS in order for it to respond
> > quicker (512K upstream connection with zero people on it makes me think
> > bandwith is not the problem!)
> > 2. Is Windows Authentication creating too much overhead? Should I code>> > own logon screens and page check code?
> >
> > Advice appreciated.
> >
> >
>
Mystery Guest



Reply With Quote

