How can I use Google Chrome Frame in .NET’s WebBrowser control? I know I have to have:
<meta http-equiv="X-UA-Compatible" content="chrome=1">
In the beginning of the page that I’m loading, but how to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Google Chrome Frame is an Internet Explorer plugin, so
WebBrowser Controlisn’t supported (since the control itself doens’t support plugins).At this official thread is being suggested an alternative approach using Chrome Frame ActiveX itself inside your application, but I never tried it.