include and memory in apppool
am 13.01.2008 19:04:01 von jose
my asp structure is:
Default.asp 'with two iframes
-Page1.asp
-Page2.asp
Page1.asp y Page2.asp:
only for test my Include.asp have 1mb.
to load this my pool finish with 17mb. but if i use only one iframe the pool
have 13mb.
why? any solution for this?
i can't replace the iframe with divs and include include.asp in default.asp
tnk.!!!
Re: include and memory in apppool
am 13.01.2008 23:48:27 von Adrienne Boswell
Gazing into my crystal ball I observed =?Utf-8?B?am9zZQ==?=
writing in
news:15AF278A-0917-42AA-9DA2-A7F2D80440A7@microsoft.com:
> my asp structure is:
>
> Default.asp 'with two iframes
> -Page1.asp
> -Page2.asp
What about browsers that don't support iframe?
>
> Page1.asp y Page2.asp:
>
>
>
> only for test my Include.asp have 1mb.
>
> to load this my pool finish with 17mb. but if i use only one iframe
> the pool have 13mb.
>
> why? any solution for this?
URL?
>
> i can't replace the iframe with divs and include include.asp in
> default.asp
Why not?
>
>
> tnk.!!!
>
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Re: include and memory in apppool
am 14.01.2008 00:12:47 von Anthony Jones
"jose" wrote in message
news:15AF278A-0917-42AA-9DA2-A7F2D80440A7@microsoft.com...
> my asp structure is:
>
> Default.asp 'with two iframes
> -Page1.asp
> -Page2.asp
>
> Page1.asp y Page2.asp:
>
>
>
> only for test my Include.asp have 1mb.
>
> to load this my pool finish with 17mb. but if i use only one iframe the
pool
> have 13mb.
>
> why? any solution for this?
>
> i can't replace the iframe with divs and include include.asp in
default.asp
>
Try server executing the include.asp instead of using include.
The problem with using an include is that IIS creates a new 'page' by
replacing all the includes with the contents of the source files then
'compiles' the result.
It's also worth just considering whether this is really a problem?
What's in the include asp anyway?
--
Anthony Jones - MVP ASP/ASP.NET