Encryption screens in WebBrowser
-
19 สิงหาคม 2555 11:32
hi all,
i wanna make an application to enter my website cpanel without using keyboard , but i need to make this application make that ,
first when i try to open my website cpanel with this code
webbrowser1.navigate ("mysite.com")
i show this

the question is , i wanna make this process , but i don't want show this encryption screen , i need to put a user name and password of my website with invisible mode.
with webbrowser or any another method like ( http requests ) or (HtmlElements)
many thanks for all
My Mail For Chat : Eng.Shady_Mohamed@yahoo.com --- Programming is a Philosophy, You Can Make a Lot of Codes For Same Result. IF my answer made a benefits to you , THEN Green my thread.
- แก้ไขโดย Shady Mohamed 19 สิงหาคม 2555 11:37
ตอบทั้งหมด
-
19 สิงหาคม 2555 11:43It depends on how "MySite.com" digests the username/password. You might be able to add your username and password to the CredentialCache in your app. Some sites use the username/password in a cookie. You may want to find a tool that logs traffic between you and the site to determine the method of sending the info, so you can incorporate the method in your code.
--
Mike -
19 สิงหาคม 2555 11:55
thanks Mike about your asnwer ,
but you open somthing in my mind ,, make it in general
how the browser know the encryption web pages , this is mean , when the webbrowser know the encryption pages returen to us with the encryption screen to put some data in it (pass / username)
if we can know what the process in this time , we can know how we write this code .
thanks all
My Mail For Chat : Eng.Shady_Mohamed@yahoo.com --- Programming is a Philosophy, You Can Make a Lot of Codes For Same Result. IF my answer made a benefits to you , THEN Green my thread.
-
19 สิงหาคม 2555 12:19
In websites managed by IIS (Microsoft) there are server configuration tools to manage the login process/requirements. When pages are requested by the client, there can be a password requirment, such as you see or not. Further, if the password is required, whether the users local authentication (for a LAN) or more global account is used can be setup. You also.can setup a username authentication means by database. This is all done on the server, and not generally accessible to the client.Now if the pages are managed by Non-IIS systems (Apache, or other systems), then there may be other authentication means.
--
Mike- ทำเครื่องหมายเป็นคำตอบโดย Mark Liu-lxfModerator 28 สิงหาคม 2555 7:17
-
20 สิงหาคม 2555 13:18
This cannot be controlled through the browser (or web browser control) or client application. The authentication mechanism is configured through the web server application (and IIS) as Family Tree Mike indicated.
If you want to customize the logon screen then the web app would need to be configured for Forms based authentication.
Paul ~~~~ Microsoft MVP (Visual Basic)
- ทำเครื่องหมายเป็นคำตอบโดย Mark Liu-lxfModerator 28 สิงหาคม 2555 7:17