Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-03 Thread Ben Joyce
Now there's a thought... thanks On 9/2/06, RYoung <[EMAIL PROTECTED]> wrote: > I'm pretty confused as to whether this can be done, or even if I am > doing things the right way. If anyone has any advice or suggestions > on a better method of processing logins from each page I'm all ears. Why no

Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-03 Thread Barry Kelly
Steve Welborn <[EMAIL PROTECTED]> wrote: > Don't you guys sleep or take a break? It's labor day > weekend for pete's > sake! It may have escaped your notice, but the world is somewhat larger than the US :) -- Barry -- http://barrkel.blogspot.com/ === This list

Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-02 Thread Dean Cleaver
Only in America ;) Dino -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Steve Welborn Sent: Sunday, 3 September 2006 18:37 To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Server.Transfer and UserControls Don&#

Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-02 Thread Steve Welborn
ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Server.Transfer and UserControls To make login.aspx receive the data, you have to pass some data. I guess you could get to it via PrevioushHandler.Request.Form - but better pass it via the Context.Items collection or query strings to login.aspx

Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-02 Thread Dominick Baier
To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] Server.Transfer and UserControls Hi all. I have a question regarding UserControls. Part of the site I am building is an area on each page where the user can log in, thus, I have made this area a UserControl with the textboxes

Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-02 Thread RYoung
I'm pretty confused as to whether this can be done, or even if I am doing things the right way. If anyone has any advice or suggestions on a better method of processing logins from each page I'm all ears. Why not just implement the login logic in the user control itself? versus posting it's dat

Re: [ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-02 Thread RYoung
details of what you did? Ron - Original Message - From: "Ben Joyce" <[EMAIL PROTECTED]> To: Sent: Saturday, September 02, 2006 3:42 PM Subject: [ADVANCED-DOTNET] Server.Transfer and UserControls Hi all. I have a question regarding UserControls. Part of the site I am bui

[ADVANCED-DOTNET] Server.Transfer and UserControls

2006-09-02 Thread Ben Joyce
Hi all. I have a question regarding UserControls. Part of the site I am building is an area on each page where the user can log in, thus, I have made this area a UserControl with the textboxes and button in there so I can display and control it the same on each page. My idea was that when the f