Advertisement

08.22.2008 at 08:37AM PDT, ID: 23670554
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.7

Pass-through works on Firefox, but NOT in IE

Asked by super786 in Active Server Pages (ASP), Internet Explorer Web Browser, Mozilla Web Browser

Tags: ,

I am doing a simple login using classic ASP and MS SQL Server back-end, and the response.redirect is working in Firefox, but NOT in IE. I tried on two different computers (I thought it was a caching issue), but the redirect works on Firefox in both computers, but not in IE.

What am I missing here?

*Partial code-snippet attached*Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
Sub CheckPassword()
 
    Const adOpenStatic = 3
    Const adOpenDynamic = 2
    Const adLockReadOnly = 1
    Const adLockPessimistic = 2
    Const adCmdText = &H0001
 
    Dim objConn, objRS, strSQL
 
    Set objConn = Server.CreateObject("ADODB.Connection")
    Set objRS = Server.CreateObject("ADODB.RecordSet")
 
    objConn.ConnectionString = "Provider=SQLOLEDB;Server=megaserver;database=mega_" & strGroupName & ";uid=mega_" & strGroupName & ";pwd=mega_" & strGroupName & ""
    objConn.Open
 
    strSQL = "SELECT * FROM Surveys WHERE (Surveys.SurveyID = " & iSurveyID & ") AND (Surveys.Password = '" & strUserPassword & "');"
    objRS.Open strSQL, objConn, adOpenDynamic, adLockPessimistic, adCmdText
	
	If Not ObjRS.EOF Then
		Response.Redirect("/userlogin.asp?status=passwordverified")
	Else
		Response.Redirect("/GetPassword.asp?status=invalid")
	End If
 
    objRS.Close
    Set objRS = Nothing
    objConn.Close
    Set objConn = Nothing
 
End Sub
[+][-]08.22.2008 at 08:41AM PDT, ID: 22291155

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.22.2008 at 08:52AM PDT, ID: 22291283

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Active Server Pages (ASP), Internet Explorer Web Browser, Mozilla Web Browser
Tags: Classic ASP, IE 7, Firefox
Sign Up Now!
Solution Provided By: hielo
Participating Experts: 2
Solution Grade: B
 
 
[+][-]08.22.2008 at 09:20AM PDT, ID: 22291586

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.22.2008 at 10:33AM PDT, ID: 22292227

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.24.2008 at 10:56AM PDT, ID: 22301496

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628