Re: [DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Steve Holak
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:

Re: [DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Fritz Onion
> 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,

Re: [DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Steve Holak
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

Re: [DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Jim Arnold
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

Re: [DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Patrik Löwendahl
: "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

Re: [DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Richard Blewett
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

[DOTNET] Get hold of HTTP Application which created an object

2002-05-22 Thread Patrik Löwendahl
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