Check Browser version and name (VB.net) : Browser « Request « ASP.Net

ASP.Net
1. ADO.net Database
2. Ajax
3. Asp Control
4. Collections
5. Components
6. Data Binding
7. Development
8. File Directory
9. HTML Control
10. Language Basics
11. Login Security
12. Mobile Control
13. Network
14. Page
15. Request
16. Response
17. Server
18. Session Cookie
19. Sitemap
20. Theme Style
21. User Control and Master Page
22. Validation by Control
23. Validation by Function
24. WebPart
25. WPF
26. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Request » Browser 
Check Browser version and name (VB.net)

<%@ Page Language="VB" %>
<script language="vb" runat="server">
  Sub Page_Load(Source As Object, E as EventArgs)
    If Not IsPostBack Then
      If Request.Browser.Browser = "IE" Then
         If Request.Browser.MajorVersion < Then
           MyLabel.Text = "Time to upgrade Internet Explorer!"
        Else
          MyLabel.Text = "Your copy of Internet Explorer is up to date."
        End If
      Else
        MyLabel.Text = "You're not using Internet Explorer"
      End If
    End If
  End Sub
</script>

<html>
  <body>
    <asp:Label id=MyLabel runat="server" Text=""/>
  </body>
</html>

           
       
Related examples in the same category
1. Assign value to browser title bar (C#)
2. Use Browser property in Request object (C#)
3. Is your browser a beta one (VB.net)
4. Browser name, major version and minor version (VB.net)
5. Request.Browser.ActiveXControls: client supports activex? (VB.net)
6. Request.Browser.Frames: browser supports frames (VB.net)
7. Check Browser version and vendor(C#)
8. Get Browser Information: AOL, JavaScript enabled, Browser type and tables enabled (VB.net)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.