How to find the client browser type ?
Answer Posted / tiger skumar
we can identify the browser name using javascript
var brw = new navigator();
alert(brw.appname);
alert(brw.appversion);
| Is This Answer Correct ? | 14 Yes | 5 No |
Post New Answer View All Answers
How can we pass info between 2 asp.net pages?
How do I send an email message from my ASP.NET page?
What are the two Layouts supported by a Web form in ASP.NET?
What are the disadvantages of view state?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
Using code explain Configuration Management
What is cache in asp net?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
What is windows active directory authentication?
Explain the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
What are the media types of http requests and response?
Explain how viewstate is being formed?
What is cookieless session id explain in brief?
What is postback and autopostback in asp.net?