Advertisement
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.
Your Input Matters 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! |
||
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
|