Link to home
Start Free TrialLog in
Avatar of Thinkpad
Thinkpad

asked on

Passing Values from ASP Page to Cold Fusion Page ??

Hi,

My requirement is after the user enters the Userid and Password from the Login ASP Page (say Login.asp)he
must be validated and if the validation is success he must be taken to the Cold Fusion Home Page ( say
Home.cfm) with the Userid and Password values passed to it ( these values should not be passed via URL
due to security reasons).
Pls. do suggest how to achieve this, if u have any code pls. do send us.

I was able to achieve this by passing the values thru. URL, but I want to achieve this without passing
thru. URL.

Thanks in Advance,
Rajesh
Avatar of winningl
winningl


pass it through form hidden variables.

<form name="test" action="home.cfm" method="post">

<input type="hidden" name="userid" value=asp_userid>

<input type="hidden" name="password" value=asp_password>

</form>


winningl
ASKER CERTIFIED SOLUTION
Avatar of cheekycj
cheekycj
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Thinkpad

ASKER

The thing is I've to validate the Username and Password in the ASP Login Page itself by checking in the Database and after successfully check I've do another select and based on that I've to direct to Home page CFM's ( say Home1.cfm or Home2.cfm).
execute the coldfusion page for validity using xmlhttp, get the result to the asp page and then do a query and send it back..works only with ie5 and above
Thanx for the "A"

CJ