I am searching how to send username and passwd to form based authorization in C# console app. Login is like here:
http://www.zoneedit.com/auth/
i find this:
http://www.daniweb.com/forums/thread188864.html
but it does not working for JS popup. Is any options to programatically login in html page with form based authorization?
The page you’re looking at is actually not “Form Based Authorization”, nor is it a Javascript pop-up. It’s actually a window generated by your web browser for making an authenticated HTTP request. You can verify this, if you wish, by using a tool like Fiddler to examine the HTTP headers that are generated when you send a request to
zoneedit.com/auth.Basically what you need to do is: (translated from VB in the 4guys article)