How to find the client browser type ?

Answers were Sorted based on User's Feedback



How to find the client browser type ?..

Answer / nirakar

Request.UserAgent

Is This Answer Correct ?    22 Yes 5 No

How to find the client browser type ?..

Answer / vinay

Response.Write(Request.Browser.Type);

Is This Answer Correct ?    13 Yes 2 No

How to find the client browser type ?..

Answer / 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

How to find the client browser type ?..

Answer / venmathi

Request.ServerVariables("http_user_agent")

Is This Answer Correct ?    7 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

What is itemrowdatabound for a datagrid?

1 Answers   IBM,


What is a postback ispostback and autopostback in asp net?

0 Answers  


What is cas?

0 Answers  


What for use web.sitemap in asp.net?

1 Answers  


What does the following SQL statement return, assuming that all tables and column names are correct? SELECT FirstName, StreetAddress FROM Employees JOIN AddressBook ON Employees.EmpID = AddressBook.EmpID a) Nothing, the JOIN syntax is wrong. b) All the records form the Employees table, and only the matching ones form the StreetAddress table. c) All the records from the StreetAddress table and only the matching records form the Employees table. d) Only the matching records from the two tables.

4 Answers   Syntax Softtech,






In which event of the page life cycle, is the viewstate available?

0 Answers  


Can I tap into other windows livetm services?

0 Answers  


Can we have a web application running without web.config file?

0 Answers  


Differences between VB.Net and C#, related to OOPS concepts

5 Answers   CSC,


how to pass session value one url to another url.my code if session("user")="abc" then response.redirect("www.abc.com\client\home.aspx") end if. so how to pass value of session in browser url

1 Answers  


Can you store dataset in viewstate?

7 Answers   Microsoft,


How many types of file extensions for razor views in ASP.Net MVC?

0 Answers  


Categories