Ask a Question related to ASP.NET General, Design and Development.
-
Ron Vecchi #1
When to lock application object
I know you should lock and unlock an application vaiable when updating it
but should you also lock it prior to reading the value from it?
My requests will be accessing the variable..
Thanks,
Ron Vecchi
Ron Vecchi Guest
-
Application Object
How easy is it for a hacker to access data stored in the Application Object in IIS server. I want to store a decrpyted connection string there rather... -
"Expected a dict object" with Acrobat Prof 6.0 = lock up
Trying to view a PDF from a website (www.skidmorednagenealogy.com)(PDF entitled "Family Genetics Project") Using Adobe Acrobat Professional 6.0... -
how to develop an asp.net application to lock web-site to a particular computer?
Hello, abandon the magic and harness client certificates, it should be good enough for you. -- Michal A. Valasek, Altair Communications,... -
How to access the application-object to lock it from session?
Hi, You try to access non static member from static function. Use HttpContext.Current.Application.Lock (); to solve your situation. Natty... -
Object lock identification
In a nutshell, I have object locking occurring from what appears to be a bad application design and would like to identify specific values that are... -
Scott M. #2
Re: When to lock application object
You shouldn't need to if it's being locked when values are being updated.
"Ron Vecchi" <vencenzo@comcast.net> wrote in message
news:eZIUXt5UDHA.2044@TK2MSFTNGP11.phx.gbl...> I know you should lock and unlock an application vaiable when updating it
> but should you also lock it prior to reading the value from it?
>
>
> My requests will be accessing the variable..
>
> Thanks,
>
> Ron Vecchi
>
>
Scott M. Guest
-
Steve C. Orr, MCSD #3
Re: When to lock application object
No, you only need to lock it when writing to it.
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Ron Vecchi" <vencenzo@comcast.net> wrote in message
news:eZIUXt5UDHA.2044@TK2MSFTNGP11.phx.gbl...> I know you should lock and unlock an application vaiable when updating it
> but should you also lock it prior to reading the value from it?
>
>
> My requests will be accessing the variable..
>
> Thanks,
>
> Ron Vecchi
>
>
Steve C. Orr, MCSD Guest
-
Ron Vecchi #4
Re: When to lock application object
Thanks forthe info
"Ron Vecchi" <vencenzo@comcast.net> wrote in message
news:eZIUXt5UDHA.2044@TK2MSFTNGP11.phx.gbl...> I know you should lock and unlock an application vaiable when updating it
> but should you also lock it prior to reading the value from it?
>
>
> My requests will be accessing the variable..
>
> Thanks,
>
> Ron Vecchi
>
>
Ron Vecchi Guest



Reply With Quote

