Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread John Paul Ashenfelter
Maybe I'm misunderstanding, but wouldn't your login simply be a SELECT from the db to get the validation credentials? Or is this using NT Authentication? If it's a simple db lookup, you just put two queries in the login page -- the login itself and the insert. You can make it even easier by having

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Fregas
1) Are you using asp3 or asp.net? 2) as someone else asked, how are they logging in? Thru a form on an asp page or from a pop-up that the web server gives (NT Challenge/response, Authentix, or something similar. In other words, where does the user database come from?) - Original Message

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
in cf it is a lot easier unfortunately, I need it in asp, which doesn't work so well but thanks for your effort:) dave - Original Message - From: John Paul Ashenfelter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:33 PM Subject: Re: easier in cf

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
asp3 using the standard dwmx login form, non-secure unfortunately, they won't let me spend the $ to get them cfmx - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:38 PM Subject: Re: easier in cf then asp, but i need

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Jeff Garza
You'll have to use a global.asa (similar to application.cfm) to initialize and hold session variables for the authenticated user, and include something like this in the Session_OnStart method... ' NT challenge response. Make sure the user is logged in to the ' network. If

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
right on, thank you this might call 4 a thinking session on the thrown haha - Original Message - From: Jeff Garza [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:47 PM Subject: Re: easier in cf then asp, but i need it in asp You'll have to use

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Fregas
: Re: easier in cf then asp, but i need it in asp asp3 using the standard dwmx login form, non-secure unfortunately, they won't let me spend the $ to get them cfmx - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
right, just checks the db - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 3:22 PM Subject: Re: easier in cf then asp, but i need it in asp So does thethe DWMX form just do a look up in your database or does it have

RE: easier in cf then asp, but i need it in asp

2003-01-08 Thread Timothy Heald
: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 2:44 PM To: CF-Talk Subject: Re: easier in cf then asp, but i need it in asp in cf it is a lot easier unfortunately, I need it in asp, which doesn't work so well but thanks for your effort:) dave - Original Message

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Fregas
of code off list. Craig - Original Message - From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 2:36 PM Subject: Re: easier in cf then asp, but i need it in asp right, just checks the db - Original Message - From: Fregas [EMAIL

Re: easier in cf then asp, but i need it in asp

2003-01-08 Thread Dave Lyons
Thanks a lot! I will try it I might send you the code, I'll owe u 1 though! - Original Message - From: Fregas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 08, 2003 5:00 PM Subject: Re: easier in cf then asp, but i need it in asp Ok. What you need to do