Have you tried to open the secure webpage in a WebView yet?
Does the WebView show a Dialog box where you can enter username and password?
So you can successfully log in and now you want the WebView to save the username and passsword and automatically log you in on sebsequent visits to the page?
The B4A WebView has no support for (javascript) Dialog boxes - Alert, Confirm etc.
So a lot depends on how the web page asks for usename and password.
If the web page uses (or tries to use) a Dialog box then it probably won't work.
You can enable support for some types of Dialog with my
WebViewExtras library and it's
addWebChromeClient method.
Currently addWebChromeClient enables Alert, Confirm and Prompt Dialogs.
So if your web page uses a Dialog to get the username and password then one of those Dialogs may work BUT i suspect i'd have to update the library to add support for the specific type of Dialog that requests username and password.
However if the web page uses a web page form to enable the user to enter username and password then it's just a case of finding the native Android WebView methods that enable the entered username and password to be saved.
That's typically done (in a commercial browser) using cookies and i think cookies are enabled by default with the WebView but that may only be session cookies.
A session cookie lasts only while the WebView is created, once the Activity containing the WebView is destroyed the session cookies are also destroyed.
So the username and password would only be saved as long as your Activity exists.
If this is the case then you'd want to find a method to enable persistent cookies - cookies that persist after your Activity has been closed.
Post again with some more info so we know exactly how you web page requires the user to login.
Martin.