Much better solution. Thanks.
Steve Holak
Senior Software Architect
Brokerage Concepts IS Dept.
610-491-4879
email: [EMAIL PROTECTED]
Fritz Onion
<[EMAIL PROTECTED]To: [EMAIL PROTECTED]
> cc:
> I had a similar requirement, and the immediate simple solution was to
do
> just what you did--pass a reference to a current application ( get
access
> to Request.Form and QueryString data).
>
> Looking back on the old COM solutions, where you got a ref to
> ObjectContext
> and on to ASP objects,
Patrik,
I had a similar requirement, and the immediate simple solution was to do
just what you did--pass a reference to a current application ( get access
to Request.Form and QueryString data).
Looking back on the old COM solutions, where you got a ref to ObjectContext
and on to ASP objects, thi
HttpApplication currentApp = HttpContext.Current.ApplicationInstance;
Jim
> -Original Message-
> From: Patrik Löwendahl [mailto:[EMAIL PROTECTED]]
> Sent: 22 May 2002 13:33
> To: [EMAIL PROTECTED]
> Subject: [DOTNET] Get hold of HTTP Application which created an ob
: "Richard Blewett" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 22, 2002 2:51 PM
Subject: Re: [DOTNET] Get hold of HTTP Application which created an object
> You mean HttpContext.Current.Application?
>
> Richard
> http://staff.develop.com/ri
You mean HttpContext.Current.Application?
Richard
http://staff.develop.com/richardb
-Original Message-
From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of
Patrik Löwendahl
Sent: 22 May 2002 13:33
To: [EMAIL PROTECTED]
Subject: [DOTNET] Get hold of HTTP Application which
Hi,
buikding a helper class for a web application in asp.net.
The class needs to access th ecurrent HTTPApplication object, right now I
pass it in the Helper class construction string.
In classic ASP you could build components which could access the
instanciation application. .Is this possible