Ask a Question related to ASP.NET General, Design and Development.
-
Alex #1
Shadow copying
Is this correct:
1. When the first request for an application on the virtual directory comes
in and ASP.NET worker process creates an AppDomain for that particular
application, it copies the code-behind(if there is one) to the
v1.1.4322\Temporary ASP.NET Files\(appname)\....
2. For the lifetime of this application the code-behind in the shadow folder
is locked.
3. If I do xcopy update on the code-behind in the \bin folder, when the next
request comes in, the AppDomain will compare the dates of the \bin
code-behind and shadow-folder code-behind, and if \bin is newer, it will
unload the reference to shadow code-behind, copy the new code-behind DLL to
shadow foldre, reference it, and proceed with parse, generate class, etc....
Alex Guest
-
Box around Drop Shadow
Win98 ID2.0.2 HP8500 When adding a drop shadow to a placed tif object the object then prints with a sort of ghosted block around the outside of it.... -
Problem: Drop shadow creates a "flat shadow"
Hi, I´m using illustrator 10 and When I apply or "copy" with the eyedropper a drop shadow it just creates a flat shadow, equal to one with 0% blur... -
Font Shadow
I am very versed in how to create a shadow for text in most any app but in 2003, my shadow option is not available. Can anyone tell me how to shadow... -
Drop shadow and ....
Hallo, Is it possible to give a static text or a symbol a drop shadow and a outer glow. If yes, where or how can i do that. A answer will be... -
how do i only keep the shadow
ok i typed a word using typing tool and i created a shadow of that word. now i want to keep the shadow and get rid of the word i typed. is it... -
alien2_51 #2
Re: Shadow copying
I'm not sure it would do a comparison of dates between files, that would
seem to slow... Although there is a piece of the framework that would do
this nicely and I would be willing to bet this is how aspnet monitors
changes in appDomains....FileSystemWatcher very cool indeed..... I think
this is also how the framework detects changes in the .config files....
"Alex" <a.agranov@verizon.net> wrote in message
news:#WXBCgdXDHA.1940@TK2MSFTNGP10.phx.gbl...comes> Is this correct:
>
> 1. When the first request for an application on the virtual directoryfolder> in and ASP.NET worker process creates an AppDomain for that particular
> application, it copies the code-behind(if there is one) to the
> v1.1.4322\Temporary ASP.NET Files\(appname)\....
>
> 2. For the lifetime of this application the code-behind in the shadownext> is locked.
>
> 3. If I do xcopy update on the code-behind in the \bin folder, when theto> request comes in, the AppDomain will compare the dates of the \bin
> code-behind and shadow-folder code-behind, and if \bin is newer, it will
> unload the reference to shadow code-behind, copy the new code-behind DLLetc....> shadow foldre, reference it, and proceed with parse, generate class,>
>
alien2_51 Guest
-
Alex #3
Re: Shadow copying
On [GMT+0100=CET],
alien2_51 <dan.billow@n.o.s.p.a.m.monacocoach.com> thought hard and spewed:
You are correct, FileSystemWatcher would be most efficient implementation> I'm not sure it would do a comparison of dates between files, that
> would seem to slow... Although there is a piece of the framework that
> would do this nicely and I would be willing to bet this is how aspnet
> monitors changes in appDomains....FileSystemWatcher very cool
> indeed..... I think this is also how the framework detects changes in
> the .config files....
>
rather then checking every time timestamps between 2 different files on
every request. This way any shadow-copying check only happens when the xcopy
is performed.
Alex Guest



Reply With Quote

