Re: [DOTNET] how to pass httpcontext.user to another assembly

2002-04-29 Thread Pete B
ubject: Re: [DOTNET] how to pass httpcontext.user to another assembly >Date: Mon, 29 Apr 2002 13:49:37 -0400 > >Pete B [mailto:[EMAIL PROTECTED]] wrote: > > > I'm just going to validate that a user is within a certain > > role and perform tasks or filter data based

Re: [DOTNET] how to pass httpcontext.user to another assembly

2002-04-29 Thread Pete B
rsh, Drew" <[EMAIL PROTECTED]> >Reply-To: dotnet discussion <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: [DOTNET] how to pass httpcontext.user to another assembly >Date: Fri, 26 Apr 2002 14:28:31 -0400 > >Pete B [mailto:[EMAIL PROTECTED]] wrote: > > &

Re: [DOTNET] how to pass httpcontext.user to another assembly

2002-04-26 Thread Pete B
::CurrentPrincipal for a valid user? >From: "Marsh, Drew" <[EMAIL PROTECTED]> >Reply-To: dotnet discussion <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: [DOTNET] how to pass httpcontext.user to another assembly >Date: Fri, 26 Apr 2002 11:27:39 -0400 >

[DOTNET] how to pass httpcontext.user to another assembly

2002-04-26 Thread Pete B
I'd like to use forms authentication in my web app, and I'll be replacing the intrinsic user with my own user object. my web app references many assemblies, none of which have access to the httpcontext. What is the best way pass my user along to these other assemblies? Should I set the thread.cur

[DOTNET] help! http File Download kills javascript on page

2002-04-24 Thread Pete B
Hello, I have an imagebutton on my aspx page that allows users to download files through the browser. The download works fine, but after it completes, all the javascript on my aspx page is dead. How do I remedy this? my button click event looks something like this; response.Addheader("Content-Ty

[DOTNET] ServicedComponent Versioning question

2002-04-24 Thread Pete B
I am trying to run two different versions of an assembly that contain servicedComponents. I built two different versions, registered then in the gac ( with two DIFFERENT keyfiles ), and registered them in COM+. At this point I can compile my DOTNET app, referencing the correct version of my assem

[DOTNET] Help with versioning ServicedComponent

2002-04-23 Thread Pete B
I am trying to run two different versions of an assembly that contain servicedComponents. I built two different versions, registered then in the gac ( with two DIFFERENT keyfiles ), and registered them in COM+. At this point I can compile my DOTNET app, referencing the correct version of my assem

[DOTNET] FormsAuthentication Question

2002-04-19 Thread Pete B
In my formsAuthentication_OnAuthenticate event I want to replace the user intrinsic with my own user object. I need to populate my user object with additional info ( e.g. roles ); however, I do not want to store this stuff in a cookie, and I don't want to reload it from the database on each OnAuth

Re: [DOTNET] why no Session in Application_BeginRequest

2002-04-18 Thread Pete B
ion you want (from any data >source); > >Dumitru > > > -Original Message- > > From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of > > Pete B > > Sent: Tuesday, April 16, 2002 10:41 PM > > To: [EMAIL PROTECTED] > > Subject: [DOTNET] why no

[DOTNET] FormsAuth.._OnAuthenticate question

2002-04-18 Thread Pete B
In my formsAuthentication_OnAuthenticate event I want to replace the user intrinsic with my own user object. I need to populate my user object with additional info ( e.g. roles ); however, I do not want to store this stuff in a cookie, and I don't want to reload it from the database on each OnAuth

[DOTNET] why no Session in Application_BeginRequest

2002-04-16 Thread Pete B
I want to validate that a user's session has not timed out OR that a user has logged in succesfully ( by checking Session info ) before the user's request is processed, and redirect the user to the login page if necessary. At the same time, if the user is logged in, I want to put some of the user'