Get Browser Information: AOL, JavaScript enabled, Browser type and tables enabled (VB.net) : Browser « Request « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
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
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Request » Browser 
Get Browser Information: AOL, JavaScript enabled, Browser type and tables enabled (VB.net)

<%@ Page Language="VB" %>

<script runat="server">
  sub Page_Load()
    lblRequestType.Text =   Request.RequestType
    lblAOL.Text =         Request.Browser.AOL
    lblJavaScript.Text =   Request.Browser.JavaScript
    lblBrowserType.Text =   Request.Browser.Type
    lblTableSupport.Text =   Request.Browser.Tables
  end sub
</script>

<html>
  <body>
    Request type : <asp:label id=lblRequestType runat="server" /><br />
    AOL : <asp:label id=lblAOL runat="server" /><br />
    JavaScript : <asp:label id=lblJavaScript runat="server" /><br />
    Browser : <asp:label id=lblBrowserType runat="server" /><br />
    Tables : <asp:label id=lblTableSupport runat="server" />
  </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. Check Browser version and name (VB.net)
w___w_w.j_a___v___a___2___s_._c__o__m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.