Click here to Skip to main content
15,920,005 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: FireFox select scrolling issue Pin
Brent Lamborn12-Sep-07 9:57
Brent Lamborn12-Sep-07 9:57 
GeneralRe: FireFox select scrolling issue Pin
Shog912-Sep-07 10:11
sitebuilderShog912-Sep-07 10:11 
Questionneed info about creating popup menu in javascript Pin
Dudhat11-Sep-07 23:20
Dudhat11-Sep-07 23:20 
AnswerRe: need info about creating popup menu in javascript Pin
Shog912-Sep-07 9:13
sitebuilderShog912-Sep-07 9:13 
AnswerRe: need info about creating popup menu in javascript Pin
VIRAGHJAIN12-Sep-07 23:37
VIRAGHJAIN12-Sep-07 23:37 
QuestionProblem with display page in Opera Pin
Dudhat11-Sep-07 23:16
Dudhat11-Sep-07 23:16 
AnswerRe: Problem with display page in Opera Pin
Johnny ²12-Sep-07 0:09
Johnny ²12-Sep-07 0:09 
QuestionIE-FIREFOX Pin
dheema11-Sep-07 21:36
dheema11-Sep-07 21:36 
Hi,
i am developing a website using classic asp in internet explorer.
Its login page is workig fine ,when i copy the address from the address bar of a protected page,it redirect me to the login page.
but am doing the same copy and past thing with firefox,it is not redirecting me to the login page,instead to the protected page. wat can i do?

this is part of the code in the protected page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"><br />
<html><br />
<head><br />
<title></title><br />
<% <br />
If Session("blnValidMember") <> True Then <br />
Response.Redirect("login.asp") <br />
End If <br />
%> <br />
<%<br />
Response.Expires = -1000<br />
Response.Expiresabsolute = Now() - 1 <br />
Response.AddHeader "pragma","no-cache" <br />
Response.AddHeader "cache-control","private" <br />
Response.CacheControl = "no-cache" <br />
%><br />
<br />
</html>


this is part of the code in the validating page
<%<br />
'Declare variables<br />
Dim oConnection, oRecordset, sSQL,sql2,rs,dr,strSQL<br />
Dim UserName, sPassword<br />
<br />
'Receive the form values and assign to sUserName and sPassword variables<br />
Username = Request.Form("txtUsername")<br />
sPassword = Request.Form("txtPwd")<br />
<br />
'If Username=sAdminUsername AND sPassword=sAdminpassword Then<br />
'Session("blnValidMember") = True<br />
'Session("Admin")=True<br />
'response.redirect "admin/approve.asp"<br />
'Else<br />
'Create a connection odject and a recordset object<br />
Set oConnection = Server.CreateObject("ADODB.Connection")<br />
Set oRecordset = Server.CreateObject("ADODB.Recordset")<br />
set rs=	Server.CreateObject("ADODB.Recordset")	 <br />
<br />
oConnection.Open sConnString<br />
<br />
sSQL = "SELECT username, password  FROM clientlist WHERE username ='"& UserName & "'"& _<br />
" AND password ='" & sPassword & "'" <br />
oRecordset.Open sSQL, oConnection<br />
If NOT oRecordset.EOF Then<br />
		'If its a valid login then set the session variable to True<br />
		Session("blnValidMember") = True<br />
		<br />
		Else<br />
<br />
        Session("blnValidMember") = False<br />
        Response.Redirect "errorpage.asp"<br />
End If<br />
<br />
%><br />


thank you in advance
AnswerRe: IE-FIREFOX Pin
Brent Lamborn12-Sep-07 8:07
Brent Lamborn12-Sep-07 8:07 
GeneralRe: IE-FIREFOX Pin
dheema12-Sep-07 18:43
dheema12-Sep-07 18:43 
AnswerRe: IE-FIREFOX Pin
Guffa12-Sep-07 19:36
Guffa12-Sep-07 19:36 
QuestionNewsletter Pin
| Muhammad Waqas Butt |11-Sep-07 21:31
professional| Muhammad Waqas Butt |11-Sep-07 21:31 
AnswerRe: Newsletter Pin
\laddie13-Sep-07 20:38
\laddie13-Sep-07 20:38 
Questionsession_start() errors Pin
hxhl9511-Sep-07 19:09
hxhl9511-Sep-07 19:09 
AnswerRe: session_start() errors Pin
Johnny ²11-Sep-07 20:46
Johnny ²11-Sep-07 20:46 
QuestionTransform web parts with incompatible interfaces on SharePoint Pin
Tesic Goran11-Sep-07 10:19
professionalTesic Goran11-Sep-07 10:19 
QuestionNavigation Control Question Pin
RJLuppino11-Sep-07 8:56
RJLuppino11-Sep-07 8:56 
QuestionFile uploader in Ajax Pin
ramyasalva11-Sep-07 1:12
ramyasalva11-Sep-07 1:12 
Questionopen source for blogs in c#.net2.0 and sqlserver2005 Pin
harryforum10-Sep-07 21:30
harryforum10-Sep-07 21:30 
AnswerRe: open source for blogs in c#.net2.0 and sqlserver2005 Pin
Christian Graus10-Sep-07 23:58
protectorChristian Graus10-Sep-07 23:58 
QuestionIE - FireFox help Pin
Tara1410-Sep-07 20:24
Tara1410-Sep-07 20:24 
AnswerRe: IE - FireFox help Pin
Christian Graus11-Sep-07 0:00
protectorChristian Graus11-Sep-07 0:00 
GeneralRe: IE - FireFox help Pin
Tara1415-Sep-07 23:55
Tara1415-Sep-07 23:55 
Questionmulti-language support Pin
Zhendalf10-Sep-07 12:12
Zhendalf10-Sep-07 12:12 
AnswerRe: multi-language support Pin
Christian Graus11-Sep-07 2:42
protectorChristian Graus11-Sep-07 2:42 

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.