Welcome Guest Search | Active Topics | Sign In | Register

Eo browser Autofill after Upgrade to 26.0.34 Options
myWorkspace
Posted: Tuesday, June 9, 2026 12:22:18 PM
Rank: Member
Groups: Member

Joined: 1/6/2016
Posts: 21
We had upgraded our EO browser version to 26.0.34. After the upgrade, we are getting autofill on some of the applications. How can we disable it on global setting? We don't want any autofills at all. EO.WebBrowser.Runtime.DefaultEngineOptions.ExtraCommandLineArgs =
"--disable-popup-blocking --disable-autofill"; tried using this but its not working
eo_support
Posted: Tuesday, June 9, 2026 1:39:56 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,499
Hi,

You can call this method to disable EngineFeatures.AutoComplete:

https://www.essentialobjects.com/doc/eo.webengine.engineoptions.setfeaturestate_overloads.html

For example:

Code: C#
EO.WebEngine.EngineOptions.Default.SetFeatureState(EngineFeature.AutoComplete, false);


Make sure you call this as early as possible in your application before the browser engine initializes. It has no effects if the browser engine has already been initialized.

Please let us know if it works for you.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.