Browser Version in ASP.Net
By [)ia6l0 iii
Use the HttpContext's Request object to determine the Browser version in ASP.Net
string theBrowserVersion = HttpContext.Current.Request.Browser.Version;
The above snippet would retrieve the Version of the Browser.
Related FAQs
Use the HtpContext's Request object to determine the Browser name.
Browser Version in ASP.Net (267 Views)