
I have a web application which is developed in VS2008. This application is currently running and clients are using now. I have to change this application to CMS. For that I have created a login page in dotnetnuke, now I want to check the username and password with database in the old application. For that what I did is,
when click a login button(html control), I will call a javascript and from javascript it will send the username and password to the next page as a query string. In next page I have added a my own dnn module for checking the login. when the next page is loading , in the module I will check the username and password in the databse. The problem is I am using the querystring to pass the values. Is this the correct way to do this?
How can I send the values to dnn module other than query string. please help me....