This topic is locked

One log-in for a V4.1 form and V5.1 form

5/7/2008 2:59:26 PM
ASPRunnerPro General questions
S
swiersman author

I have a question:
In the past, I used v4.1 and created 4 forms. They all used the same login credentials. SO as advised, I simply presented one of the forms login page that after successful would forward them to an htm page that held links to each form's list page. That works great and each form passes through the security and captures the login Username in Submitter field in each form.
Now I have created a form in v5.1. referencing the same DB fields for username and password. When I add it to the links on the html page the page it passes the security fine but does not capture the Submitter field in the form.
I noticed in the 5.1 v Variables.asp the following line: Session("OwnerID") = Session("_" & strTableName & "OwnerID") ' to support older events and default values.
I know "OwnerID" is used in V4.1 and in those forms I show Submitter = Session("OwnerID").

I beleive in the 5.1 version it is referenced as Submitter = Session("
" & strTableName & "OwnerID")
How can I get the v5.1 form to capture the Session("OwnerID") directly or by using Session("
" & strTableName & "_OwnerID")?
Again, the security works fine, it's just that the Submitter is not populating on the 5.1 form.
Any help would be great.
Scott

J
Jane 5/8/2008

Scott,
use Session("_" & strTableName & "_OwnerID") as default value in the ASPRunner 5.1,5.2.

S
swiersman author 5/8/2008

Scott,

use Session("_" & strTableName & "_OwnerID") as default value in the ASPRunner 5.1,5.2.


I tried that, it still allows me through, but still does not populate this field. If I use the logon for the 5.1 page instead, would that migrate to the 4.1 pages?

FYI, all pages sit n the same directory structure on the same IIS v5.0 instance.
ANy help would be great.
Scott