There is a 'setting' called
UserAgent, basically it's just a unique string that 'represents' which browser software (firefox, iexplorer, etc) is being used. The 'browser' sends this info to the server each time it requests a page. The web-server can choose to send a different version (usually file) of the page, based on the useragent.
Idk how, I assume you're using the built in iexplorer component? google "Set UserAgent in iexplorer vb.net" (or whatever the component name is) - the useragentstring you want probably has "Mobile" in the name : D
edit: I did the search.
First result:
http://www.vbforums.com/showthread.p...owser1-control
2nd post down..
user 'TheKill3r' says
"
Code:
WebBrowser1.Navigate "http://www.yoursite.com", , , , "User-Agent: Here Put The User Agent"
"
but you have to supply the argument every time you call the function, which is maybe annoying (?), apparently there is a registry setting you can mess with related to user-agent. ?
-and a list of 'mobile' browser user-agent string constants.
http://www.useragentstring.com/pages...20Browserlist/
.
ex. "Mozilla/5.0 (Linux; U; Android 4.0.3; ko-kr; LG-L160L Build/IML74K) AppleWebkit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30"
.
and one for a non-mobile browser (ie. pc?)
"Mozilla/5.0 (Windows NT 6.2; WOW64; rv:16.0.1) Gecko/20121011 Firefox/16.0.1"
I'm not sure on the format/syntax. Another google : )