PC Review


Reply
Thread Tools Rate Thread

creating user ids and passwords for a link in web site

 
 
=?Utf-8?B?Sm9zaCBEYXZpcw==?=
Guest
Posts: n/a
 
      12th Jul 2005
how do i create a link that restricts access to the link using set ids and
passwords so that only certain people can view the page?

Josh
 
Reply With Quote
 
 
 
 
MikeR
Guest
Posts: n/a
 
      12th Jul 2005
If everybody will have the same id and pw, then create a form page with 2 text inputs, and
a submit button. For the action of the submit goto argle.asp.
In argle.asp
<%
If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
(UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
response.redirect("MyGoodPage.html")
Else
response.redirect("MyLoginErrorPage.html")
End If
%>
Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
If each user has their own login, then agrle.asp will need to read a database.
This supposes you are on a server that supports asp.

If each user will have their own login, the argle.asp will need to read a database to amke
the match.

There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
MikeR

Josh Davis wrote:
> how do i create a link that restricts access to the link using set ids and
> passwords so that only certain people can view the page?
>
> Josh

 
Reply With Quote
 
=?Utf-8?B?Sm9zaCBEYXZpcw==?=
Guest
Posts: n/a
 
      13th Jul 2005
k i want to put just one id and one password field after i click on a link i
want the user id and the password box to pop up and prompt for user id and
password. But i would like an example of how to do multiple ids and
passwords. it might be easier just to email back and forth you can email to
(E-Mail Removed)

Thanks
Josh

"MikeR" wrote:

> If everybody will have the same id and pw, then create a form page with 2 text inputs, and
> a submit button. For the action of the submit goto argle.asp.
> In argle.asp
> <%
> If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
> (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
> response.redirect("MyGoodPage.html")
> Else
> response.redirect("MyLoginErrorPage.html")
> End If
> %>
> Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
> If each user has their own login, then agrle.asp will need to read a database.
> This supposes you are on a server that supports asp.
>
> If each user will have their own login, the argle.asp will need to read a database to amke
> the match.
>
> There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
> MikeR
>
> Josh Davis wrote:
> > how do i create a link that restricts access to the link using set ids and
> > passwords so that only certain people can view the page?
> >
> > Josh

>

 
Reply With Quote
 
=?Utf-8?B?Sm9zaCBEYXZpcw==?=
Guest
Posts: n/a
 
      13th Jul 2005
I would greatly appreciate it if you could walk me throught where and how I
am supposed to put this form into frontpage. I am not very familar with forms
in frontpage.

Josh

"MikeR" wrote:

> If everybody will have the same id and pw, then create a form page with 2 text inputs, and
> a submit button. For the action of the submit goto argle.asp.
> In argle.asp
> <%
> If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
> (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
> response.redirect("MyGoodPage.html")
> Else
> response.redirect("MyLoginErrorPage.html")
> End If
> %>
> Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
> If each user has their own login, then agrle.asp will need to read a database.
> This supposes you are on a server that supports asp.
>
> If each user will have their own login, the argle.asp will need to read a database to amke
> the match.
>
> There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
> MikeR
>
> Josh Davis wrote:
> > how do i create a link that restricts access to the link using set ids and
> > passwords so that only certain people can view the page?
> >
> > Josh

>

 
Reply With Quote
 
=?Utf-8?B?Sm9zaCBEYXZpcw==?=
Guest
Posts: n/a
 
      13th Jul 2005
could you please explain what this form does and walk me through what it means.

Josh

"MikeR" wrote:

> If everybody will have the same id and pw, then create a form page with 2 text inputs, and
> a submit button. For the action of the submit goto argle.asp.
> In argle.asp
> <%
> If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
> (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
> response.redirect("MyGoodPage.html")
> Else
> response.redirect("MyLoginErrorPage.html")
> End If
> %>
> Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
> If each user has their own login, then agrle.asp will need to read a database.
> This supposes you are on a server that supports asp.
>
> If each user will have their own login, the argle.asp will need to read a database to amke
> the match.
>
> There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
> MikeR
>
> Josh Davis wrote:
> > how do i create a link that restricts access to the link using set ids and
> > passwords so that only certain people can view the page?
> >
> > Josh

>

 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      13th Jul 2005
If you want to have multiple users, then you will need to use a database and server-side scripting
or your web host will have to let you create FP subwebs with unique permissions.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

"Josh Davis" <(E-Mail Removed)> wrote in message
news:8FAD9024-83E3-4E79-9051-(E-Mail Removed)...
>k i want to put just one id and one password field after i click on a link i
> want the user id and the password box to pop up and prompt for user id and
> password. But i would like an example of how to do multiple ids and
> passwords. it might be easier just to email back and forth you can email to
> (E-Mail Removed)
>
> Thanks
> Josh
>
> "MikeR" wrote:
>
>> If everybody will have the same id and pw, then create a form page with 2 text inputs, and
>> a submit button. For the action of the submit goto argle.asp.
>> In argle.asp
>> <%
>> If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
>> (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
>> response.redirect("MyGoodPage.html")
>> Else
>> response.redirect("MyLoginErrorPage.html")
>> End If
>> %>
>> Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
>> If each user has their own login, then agrle.asp will need to read a database.
>> This supposes you are on a server that supports asp.
>>
>> If each user will have their own login, the argle.asp will need to read a database to amke
>> the match.
>>
>> There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
>> MikeR
>>
>> Josh Davis wrote:
>> > how do i create a link that restricts access to the link using set ids and
>> > passwords so that only certain people can view the page?
>> >
>> > Josh

>>



 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      13th Jul 2005
For a single login for all users
See http://support.microsoft.com/default...b;en-us;825451
Your host will have to support subwebs and unique permissions under the FP Server Extensions

For multiple logins for different users it depends on your hosts OS and what they support
For a Windows Host that supports ASP & Access DB
See http://support.microsoft.com/default.aspx?scid=321439
--

_____________________________________________
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
_____________________________________________


"Josh Davis" <(E-Mail Removed)> wrote in message news:9A541DCC-AA59-4C36-AC8A-(E-Mail Removed)...
| could you please explain what this form does and walk me through what it means.
|
| Josh
|
| "MikeR" wrote:
|
| > If everybody will have the same id and pw, then create a form page with 2 text inputs, and
| > a submit button. For the action of the submit goto argle.asp.
| > In argle.asp
| > <%
| > If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
| > (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
| > response.redirect("MyGoodPage.html")
| > Else
| > response.redirect("MyLoginErrorPage.html")
| > End If
| > %>
| > Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
| > If each user has their own login, then agrle.asp will need to read a database.
| > This supposes you are on a server that supports asp.
| >
| > If each user will have their own login, the argle.asp will need to read a database to amke
| > the match.
| >
| > There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
| > MikeR
| >
| > Josh Davis wrote:
| > > how do i create a link that restricts access to the link using set ids and
| > > passwords so that only certain people can view the page?
| > >
| > > Josh
| >


 
Reply With Quote
 
=?Utf-8?B?Sm9zaCBEYXZpcw==?=
Guest
Posts: n/a
 
      17th Jul 2005
anyone with any other suggestions outside of using asp or frontpage
extentions. What about using a javascript?

"Stefan B Rusynko" wrote:

> For a single login for all users
> See http://support.microsoft.com/default...b;en-us;825451
> Your host will have to support subwebs and unique permissions under the FP Server Extensions
>
> For multiple logins for different users it depends on your hosts OS and what they support
> For a Windows Host that supports ASP & Access DB
> See http://support.microsoft.com/default.aspx?scid=321439
> --
>
> _____________________________________________
> 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
> _____________________________________________
>
>
> "Josh Davis" <(E-Mail Removed)> wrote in message news:9A541DCC-AA59-4C36-AC8A-(E-Mail Removed)...
> | could you please explain what this form does and walk me through what it means.
> |
> | Josh
> |
> | "MikeR" wrote:
> |
> | > If everybody will have the same id and pw, then create a form page with 2 text inputs, and
> | > a submit button. For the action of the submit goto argle.asp.
> | > In argle.asp
> | > <%
> | > If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
> | > (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
> | > response.redirect("MyGoodPage.html")
> | > Else
> | > response.redirect("MyLoginErrorPage.html")
> | > End If
> | > %>
> | > Putting argle.asp in a hidden folder (_MyFlowerPix) makes this a tad more secure.
> | > If each user has their own login, then agrle.asp will need to read a database.
> | > This supposes you are on a server that supports asp.
> | >
> | > If each user will have their own login, the argle.asp will need to read a database to amke
> | > the match.
> | >
> | > There are native FP/server ways too, but I'll leave that to someone else, as I don't use 'em.
> | > MikeR
> | >
> | > Josh Davis wrote:
> | > > how do i create a link that restricts access to the link using set ids and
> | > > passwords so that only certain people can view the page?
> | > >
> | > > Josh
> | >
>
>
>

 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      17th Jul 2005
If you want security, you need server-side scripting and/or
permissions, using FPextensions, ASP, asp.NET, PHP or Perl/CGI, or
whatever your host will support.
You can use JavaScript to restrict access to a page - until someone
looks at the URL of the page in the browser, then the security is
gone.
See www.rxs-enterprises.org/tests/jspass/ for one method of doing
this. But secure? - it isn't.
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"Josh Davis" <(E-Mail Removed)> wrote in message
news:A080F6BF-03B0-4ACA-91AA-(E-Mail Removed)...
> anyone with any other suggestions outside of using asp or frontpage
> extentions. What about using a javascript?
>
> "Stefan B Rusynko" wrote:
>
>> For a single login for all users
>> See http://support.microsoft.com/default...b;en-us;825451
>> Your host will have to support subwebs and unique permissions under
>> the FP Server Extensions
>>
>> For multiple logins for different users it depends on your hosts OS
>> and what they support
>> For a Windows Host that supports ASP & Access DB
>> See http://support.microsoft.com/default.aspx?scid=321439
>> --
>>
>> _____________________________________________
>> 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
>> _____________________________________________
>>
>>
>> "Josh Davis" <(E-Mail Removed)> wrote in message
>> news:9A541DCC-AA59-4C36-AC8A-(E-Mail Removed)...
>> | could you please explain what this form does and walk me through
>> what it means.
>> |
>> | Josh
>> |
>> | "MikeR" wrote:
>> |
>> | > If everybody will have the same id and pw, then create a form
>> page with 2 text inputs, and
>> | > a submit button. For the action of the submit goto argle.asp.
>> | > In argle.asp
>> | > <%
>> | > If (UCase(Request.Form("NameOfYourIDtextBox") = "MYID") and
>> | > (UCase(Request.Form("NameOfYourPWTextBox) = "MYPASSWORD") then
>> | > response.redirect("MyGoodPage.html")
>> | > Else
>> | > response.redirect("MyLoginErrorPage.html")
>> | > End If
>> | > %>
>> | > Putting argle.asp in a hidden folder (_MyFlowerPix) makes this
>> a tad more secure.
>> | > If each user has their own login, then agrle.asp will need to
>> read a database.
>> | > This supposes you are on a server that supports asp.
>> | >
>> | > If each user will have their own login, the argle.asp will need
>> to read a database to amke
>> | > the match.
>> | >
>> | > There are native FP/server ways too, but I'll leave that to
>> someone else, as I don't use 'em.
>> | > MikeR
>> | >
>> | > Josh Davis wrote:
>> | > > how do i create a link that restricts access to the link
>> using set ids and
>> | > > passwords so that only certain people can view the page?
>> | > >
>> | > > Josh
>> | >
>>
>>
>>



 
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
Creating User ID's & Passwords =?Utf-8?B?RWR3aW4gTmF0aWM=?= Microsoft Frontpage 1 26th Nov 2006 12:28 PM
How can I delete all saved site passwords and user names. JJKingofbeers@y2001.com Windows XP Security 0 4th Sep 2004 08:46 PM
Dynamically adding user names and passwords for web site protection Koen Microsoft Windows 2000 Security 1 8th Oct 2003 02:05 PM
Creating a form to change user passwords Darren Microsoft Access Form Coding 8 17th Jul 2003 04:03 PM
Internet User ID and Passwords for individual site logon Softshoe Windows XP General 1 16th Jul 2003 08:03 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:49 PM.