Field Values & Contents |
2/27/2009 4:31:30 PM |
ASPRunnerPro General questions | |
E
ErinSigma author
Is there a way I can access a colleciton of the Field Data and Values. |
|
![]() |
Sergey Kornilov admin 2/27/2009 |
You need to check manual section specific to event you use. Response.Write dict("FieldName") |
E
|
ErinSigma author 2/27/2009 |
Thanks admin, yeah I go dict"(varname") working in add/update event etc. |
![]() |
Sergey Kornilov admin 2/27/2009 |
Check AfterSuccessfulLogin event that provides access to all fields in user record: |
E
|
ErinSigma author 2/27/2009 |
Somewhat really confused <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=38349&image=1&table=forumreplies' class='bbc_emoticon' alt=':unsure:' /> |
![]() |
Sergey Kornilov admin 2/27/2009 |
Erin, set rs = dal.LoginTableName.Query("UserNameField='" & username & "' and PasswordField='" & password & "'","")
|
E
|
ErinSigma author 2/27/2009 |
Hi admin. |
![]() |
Sergey Kornilov admin 2/28/2009 |
Erin, |
E
|
ErinSigma author 2/28/2009 |
Done, thank you for the assistance. |
E
|
ErinSigma author 2/28/2009 |
Hi Sergey. I had sent the project up to the demo site yesterday as requested and posted the url. |
![]() |
Sergey Kornilov admin 2/28/2009 |
Erin, |
![]() |
Sergey Kornilov admin 3/1/2009 |
Here is the snippet that works. It ws missing the second parameter (WHERE). set rs = dal.Accounts.Query("Login_ID='" & username & "' and Acct_PSWD='" & password & "'","") |
E
|
ErinSigma author 3/1/2009 |
Erin, answered to personal email. It needs to be on Demo Account server as we cannot troubleshoot it on your server.
|
E
|
ErinSigma author 3/1/2009 |
Here is the snippet that works. It ws missing the second parameter (WHERE). I removed some unnecessary spaces as well. set rs = dal.Accounts.Query("Login_ID='" & username & "' and Acct_PSWD='" & password & "'","")
|