Click here to Skip to main content
15,901,283 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: LOGIN PAGE IN JSP: URGENTLY Pin
alex.barylski3-Jun-03 10:16
alex.barylski3-Jun-03 10:16 
GeneralRe: LOGIN PAGE IN JSP: URGENTLY Pin
Anonymous2-Jun-03 17:43
Anonymous2-Jun-03 17:43 
GeneralRe: LOGIN PAGE IN JSP: URGENTLY Pin
svsrikanth2-Jun-03 18:01
svsrikanth2-Jun-03 18:01 
Generalyer fave domain namers and hosters Pin
stephen.hazel31-May-03 15:41
stephen.hazel31-May-03 15:41 
GeneralRe: yer fave domain namers and hosters Pin
alex.barylski1-Jun-03 17:04
alex.barylski1-Jun-03 17:04 
GeneralRe: yer fave domain namers and hosters Pin
Bullschmidt3-Jun-03 2:27
Bullschmidt3-Jun-03 2:27 
GeneralRe: yer fave domain namers and hosters Pin
Rocky Moore16-Jun-03 0:31
Rocky Moore16-Jun-03 0:31 
GeneralIsn't This Fun? (ASP Session Problem) Pin
Roger Wright31-May-03 7:28
professionalRoger Wright31-May-03 7:28 
A website I've been working on for a while requires a user logon; the user info is checked and a session variable keeps track of whether the user is allowed to proceed. It worked perfectly yesterday, but last night I installed the .NET Framework. Today it doesn't work - What changed? Here's the code:

In global.asa -

Sub Session_OnStart
usrOK = False
currTbl = ""
currRec = ""
update = "No"
End Sub

In login.asp -

If (strUser="member") AND (strPass="webuild") Then
Session("usrOK") = True
End If

If Session("usrOK") = False Then
strHTML="You are not authorized to view this page" &_
""
Out(strHTML)
Wait(2)
Response.Flush
Server.Transfer("maintain.asp")
Else

'blah, blah, blah

Just for good measure, I checked the site settings in IIS to see if they'd been changed. There were no changes that would affect this routine, and session settings are still where I left them. Maintain.asp is the entry point where I obtain user id info, and Wait() is a delay function in a SSI file. Any ideas?

"Ask not for whom the bell tolls;
It tolls for thee..."

GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Paul Watson31-May-03 9:23
sitebuilderPaul Watson31-May-03 9:23 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright31-May-03 10:17
professionalRoger Wright31-May-03 10:17 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Paul Watson31-May-03 10:29
sitebuilderPaul Watson31-May-03 10:29 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright31-May-03 11:03
professionalRoger Wright31-May-03 11:03 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Rama Krishna Vavilala31-May-03 11:41
Rama Krishna Vavilala31-May-03 11:41 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Paul Watson1-Jun-03 5:22
sitebuilderPaul Watson1-Jun-03 5:22 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright1-Jun-03 5:59
professionalRoger Wright1-Jun-03 5:59 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Hesham Amin1-Jun-03 21:02
Hesham Amin1-Jun-03 21:02 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright1-Jun-03 22:28
professionalRoger Wright1-Jun-03 22:28 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
David Wulff2-Jun-03 3:59
David Wulff2-Jun-03 3:59 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Paul Watson2-Jun-03 4:04
sitebuilderPaul Watson2-Jun-03 4:04 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Jason Henderson2-Jun-03 2:58
Jason Henderson2-Jun-03 2:58 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright2-Jun-03 6:35
professionalRoger Wright2-Jun-03 6:35 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Rocky Moore16-Jun-03 0:39
Rocky Moore16-Jun-03 0:39 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright16-Jun-03 7:30
professionalRoger Wright16-Jun-03 7:30 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Rocky Moore16-Jun-03 14:59
Rocky Moore16-Jun-03 14:59 
GeneralRe: Isn't This Fun? (ASP Session Problem) Pin
Roger Wright16-Jun-03 15:32
professionalRoger Wright16-Jun-03 15:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.