您可以通过Internet Explorer选项停止加载图像.
要在IE中禁用图像:
这也可以通过更改适当的注册表设置以编程方式实现.例如
RegistryKey ieKey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Internet Explorer\Main");
ieKey.SetValue("Display Inline Images", "no");
Run Code Online (Sandbox Code Playgroud)