Other Request Objects

This section covers several other Request objects that are very useful for development. The Browser collection enables you to find information about the user’s browser, and if necessary, adjust your content and rendering. And a number of other objects enable you to find information regarding paths and files.

The following code shows you how to find out a great deal of information about the client browser:

 <% Dim bc As HttpBrowserCapabilities = Request.Browser %> Type: <%=bc.Type%><br> Name: <%=bc.Browser%><br> Version: <%=bc.Version%><br> Major Version: <%=bc.MajorVersion%><br> Minor Version: <%=bc.MinorVersion%><br> Platform: <%=bc.Platform%><br> Is Beta: <%=bc.Beta%><br> Is Crawler: <%=bc.Crawler%><br> Is AOL: <%=bc.AOL%><br> ...

Get Special Edition Using® Microsoft® ASP.NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.