Ask a Question related to ASP, Design and Development.
-
Vitamin #1
ASP loading too slow
in what condition will lead the the ASP page run too slowing...
thx
Vitamin Guest
-
Slow loading pictures
I have some pictures on my website that load very slow. In fact even the very small pictures load slow. I don't think this is a hosting issue. I... -
Slow loading
I have a small ASP/MS Access app that was developed on a laptop (P4 1.6 w.256 MB RAM). On the notebook the database access times are about 2-7... -
AVI clips loading too slow...help!!!!
hello, i've created a project with four short avi clips linked to it, and all the clips just load way too slow compared to the project i did with... -
Slow-loading .swf
Hello everyone, I created a .swf file and tried to put it into a web page, but it never loads. It starts, goes for a while and then freezes. .swf... -
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... -
William Tasso #2
Re: ASP loading too slow
Vitamin wrote:
too much data> in what condition will lead the the ASP page run too slowing...
>
over-loaded server
poor query optimisation
dodgy connection
knackered workstation
poor browser
to name just a few.
you may want to narrow it down a bit.
--
William Tasso - [url]http://WilliamTasso.com[/url]
William Tasso Guest
-
Vitamin #3
Re: ASP loading too slow
i think the query is a ig question in my point
sometimes, i need inner join more than 5 table...
"William Tasso" <ngx@tbdata.com> wrote in message
news:%23arUDNPfDHA.2484@TK2MSFTNGP09.phx.gbl...> Vitamin wrote:>> > in what condition will lead the the ASP page run too slowing...
> >
> too much data
> over-loaded server
> poor query optimisation
>
> dodgy connection
> knackered workstation
> poor browser
>
> to name just a few.
>
> you may want to narrow it down a bit.
>
> --
> William Tasso - [url]http://WilliamTasso.com[/url]
>
>
Vitamin Guest
-
WIlliam Morris #4
Re: ASP loading too slow
Try this:
Remove the query. If the page loads fast without it, then that's where the
problem is. The tables need indexes, or the query needs to be optimized.
You might also try moving to stored procedures.
--
William Morris
Product Development, Seritas LLC
"Vitamin" <hah@seeWhat.com> wrote in message
news:OcIDqiPfDHA.3284@tk2msftngp13.phx.gbl...> i think the query is a ig question in my point
> sometimes, i need inner join more than 5 table...
>
> "William Tasso" <ngx@tbdata.com> wrote in message
> news:%23arUDNPfDHA.2484@TK2MSFTNGP09.phx.gbl...>> > Vitamin wrote:> >> > > in what condition will lead the the ASP page run too slowing...
> > >
> > too much data
> > over-loaded server
> > poor query optimisation
> >
> > dodgy connection
> > knackered workstation
> > poor browser
> >
> > to name just a few.
> >
> > you may want to narrow it down a bit.
> >
> > --
> > William Tasso - [url]http://WilliamTasso.com[/url]
> >
> >
>
WIlliam Morris Guest
-
PB4FUN #5
Re: ASP loading too slow
If you use that query a lot, I suggest creating a new table for that one.
If the seperate tables are changed, run a query to update the extra table.
If you try to fetch the records again it will go a lot faster.
Meindert, MCP
"Vitamin" <hah@seeWhat.com> wrote in message
news:OcIDqiPfDHA.3284@tk2msftngp13.phx.gbl...> i think the query is a ig question in my point
> sometimes, i need inner join more than 5 table...
>
> "William Tasso" <ngx@tbdata.com> wrote in message
> news:%23arUDNPfDHA.2484@TK2MSFTNGP09.phx.gbl...>> > Vitamin wrote:> >> > > in what condition will lead the the ASP page run too slowing...
> > >
> > too much data
> > over-loaded server
> > poor query optimisation
> >
> > dodgy connection
> > knackered workstation
> > poor browser
> >
> > to name just a few.
> >
> > you may want to narrow it down a bit.
> >
> > --
> > William Tasso - [url]http://WilliamTasso.com[/url]
> >
> >
>
PB4FUN Guest



Reply With Quote

