TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Get Web Browser Name In C#
Ashish Srivastava
Apr 26
2016
Code
18
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
public
string
GetWebBrowserName()
{
string
WebBrowserName =
string
.Empty;
try
{
WebBrowserName = HttpContext.Current.Request.Browser.Browser;
}
catch
(Exception ex)
{
throw
new
Exception(ex.Message);
}
return
WebBrowserName;
}
Get Web Browser Name
C#