Hello,
I have an external application written in some Rich Client Application, and I have a web browser control that I want to log in my DotNetNuke Application. Using many other websites that uses POST requests, I can send the post request to the login controller and it works fine.. I am doing the same, sending a POST login request to DDN, but it fails to attempt to login. What am I doing wrong?
webBrowser.Navigate("
http://localhost/demo/Home/tabid/51...fault.aspx" target="_blank" rel="nofollow">http://localhost/demo/Home/tabid/51...fault.aspx"), "dnn:ctr:Signin:txtUsername=nsuser&dnn:ctr:Signin:txtPassword=demo&dnn:ctr:Signin:cmdLogin=Login);
I am navigating to this page:
http://localhost/demo/Home/tabid/51...fault.aspx" target="_blank" rel="nofollow">http://localhost/demo/Home/tabid/51...fault.aspx
And the post parameters are:
dnn:ctr:Signin:txtUsername=nsuser
dnn:ctr:Signin:txtPassword=demo
dnn:ctr:Signin:cmdLogin=Login
What is the proper way to do that in DDN?