PC Review


Reply
Thread Tools Rate Thread

ASP Database Password???

 
 
=?Utf-8?B?SmF5ZQ==?=
Guest
Posts: n/a
 
      11th Nov 2004
So, I have been told that I can redirect a password page by using an asp
database.

1. is this true?
2. Is this easy?

I know that my host supports asp.

I am trying to have one login page, once there the user will put in a
password. That password will send them to one of 10 pages. I do not want my
customers to see the other pages. They will each have their own page. Make
sense?

Thank you

 
Reply With Quote
 
 
 
 
clintonG
Guest
Posts: n/a
 
      11th Nov 2004
1. yes
2. only for somebody that has scripting experience

I've developed all kinds of secure customer access solutions
for merchants...

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET (E-Mail Removed)
URL http://www.metromilwaukee.com/clintongallagher/


"Jaye" <(E-Mail Removed)> wrote in message
news:99E18E8B-6158-4480-A702-(E-Mail Removed)...
> So, I have been told that I can redirect a password page by using an asp
> database.
>
> 1. is this true?
> 2. Is this easy?
>
> I know that my host supports asp.
>
> I am trying to have one login page, once there the user will put in a
> password. That password will send them to one of 10 pages. I do not want

my
> customers to see the other pages. They will each have their own page. Make
> sense?
>
> Thank you
>



 
Reply With Quote
 
=?Utf-8?B?SmF5ZQ==?=
Guest
Posts: n/a
 
      11th Nov 2004
Thanks, then it will not work fom me.

Any thoughts on a system variable other than "refresh"?

"clintonG" wrote:

> 1. yes
> 2. only for somebody that has scripting experience
>
> I've developed all kinds of secure customer access solutions
> for merchants...
>
> --
> <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> Architectural & e-Business Consulting -- Software Development
> NET (E-Mail Removed)
> URL http://www.metromilwaukee.com/clintongallagher/
>
>
> "Jaye" <(E-Mail Removed)> wrote in message
> news:99E18E8B-6158-4480-A702-(E-Mail Removed)...
> > So, I have been told that I can redirect a password page by using an asp
> > database.
> >
> > 1. is this true?
> > 2. Is this easy?
> >
> > I know that my host supports asp.
> >
> > I am trying to have one login page, once there the user will put in a
> > password. That password will send them to one of 10 pages. I do not want

> my
> > customers to see the other pages. They will each have their own page. Make
> > sense?
> >
> > Thank you
> >

>
>
>

 
Reply With Quote
 
clintonG
Guest
Posts: n/a
 
      12th Nov 2004
I don't understand the context of your last question.


--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET (E-Mail Removed)
URL http://www.metromilwaukee.com/clintongallagher/


"Jaye" <(E-Mail Removed)> wrote in message
news:6B156922-85F7-489A-940E-(E-Mail Removed)...
> Thanks, then it will not work fom me.
>
> Any thoughts on a system variable other than "refresh"?
>
> "clintonG" wrote:
>
> > 1. yes
> > 2. only for somebody that has scripting experience
> >
> > I've developed all kinds of secure customer access solutions
> > for merchants...
> >
> > --
> > <%= Clinton Gallagher, "Twice the Results -- Half the Cost"
> > Architectural & e-Business Consulting -- Software Development
> > NET (E-Mail Removed)
> > URL http://www.metromilwaukee.com/clintongallagher/
> >
> >
> > "Jaye" <(E-Mail Removed)> wrote in message
> > news:99E18E8B-6158-4480-A702-(E-Mail Removed)...
> > > So, I have been told that I can redirect a password page by using an

asp
> > > database.
> > >
> > > 1. is this true?
> > > 2. Is this easy?
> > >
> > > I know that my host supports asp.
> > >
> > > I am trying to have one login page, once there the user will put in a
> > > password. That password will send them to one of 10 pages. I do not

want
> > my
> > > customers to see the other pages. They will each have their own page.

Make
> > > sense?
> > >
> > > Thank you
> > >

> >
> >
> >



 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      12th Nov 2004
For login protecting a page / folder / subweb w/ a database see
http://support.microsoft.com/default.aspx?scid=321439
- your host would need to support ASP and Access

For what you are trying to do (redirect a specific user to a specific page)
- you would need to customize the ASP code to look up the page location based on the username/password in the Database and return a
Response.Redirect for the page obtained from the Database (the full URL of the page for that user from a field named say: page)
The 2 links on above page should give you a guide
See http://support.microsoft.com/kb/299987/EN-US/

Instead of using
Response.Redirect "Default.asp"
First Get the page from the DB
strPage = Rs.Fields("page").value
Then send them there
Response.Redirect strPage

Yes it requires learning some ASP, but it is not that difficult
- if all of the above is too complex for you, engage a developer
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Jaye" <(E-Mail Removed)> wrote in message news:99E18E8B-6158-4480-A702-(E-Mail Removed)...
| So, I have been told that I can redirect a password page by using an asp
| database.
|
| 1. is this true?
| 2. Is this easy?
|
| I know that my host supports asp.
|
| I am trying to have one login page, once there the user will put in a
| password. That password will send them to one of 10 pages. I do not want my
| customers to see the other pages. They will each have their own page. Make
| sense?
|
| Thank you
|


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Password on database - allow users to open front-end w/o password =?Utf-8?B?VHJhY2k=?= Microsoft Access Security 1 8th May 2006 09:04 PM
I saved password into the database with "binary" data type from GetByte method. How can I to compare the password that between database and transfered from the page? Benny Ng Microsoft Dot NET Framework 3 25th Jan 2006 06:49 AM
I saved password into the database with "binary" data type from GetByte method. How can I to compare the password that between database and transfered from the page? Benny Ng Microsoft ASP .NET 3 25th Jan 2006 06:49 AM
I saved password into the database with "binary" data type from GetByte method. How can I to compare the password that between database and transfered from the page? Benny Ng Microsoft Dot NET 3 25th Jan 2006 06:49 AM
using Properties("Jet OLEDB:Database Password").value = xxxxxxx opens database with no password db Microsoft Access Security 0 16th Sep 2003 06:02 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:16 AM.