Hi I am working on an application in which I need almost 10 webBrowsers which render when some button is clicked. Now this amount of browsers takes too much memory on RAM. Is there any way to reduce the memory consumption with the mentioned number of browsers?
Thanks
Hi I am working on an application in which I need almost 10 webBrowsers
Share
I doubt there is a lot you can do to reduce memory consumption depending on where the memory is being used.
It depends on what is taking the memory, you could try launching the browsers in No-addon mode which would save some memory, additionally if the memory consumption is increasing becuase of data in the pages stored in the ViewState of the page then moving data from the ViewState to the session would help with this.