Skip to main content

Posts

Showing posts with the label Browser Information

ASP.NET Using Request Information

Using Request Information In situation one may want to know about the client browser type and generate contents accordingly. Request.Browser Methods include: GetClrVersions (), IsBrowser (BrowserType) Properties Include: ActiveXControls (Supported or Not), AOL (Client is AOL Browser), BackgroundSounds (<bgsound> supported or not), Browser (Browser string), ClrVersion ( installed version), Cookies (supported), Crawler (Browser is a search engine or not), Frames (HTML Frames Supported or not), IsColor (color or grayscale), IsMobiledevice , JavaApplets (Supported or not), JavaScript , JScriptVersion , MobieDeviceManifecturer , MobileDeviceModel , MSDOMVersion , Tables , VBScript , Version , W3CDomVersion , Win16 , Win32 . Pages and Application context overview : ASP.NET provides many objects to examine the request and response information. Response: HttpResponse. BinaryWrite , AppendHeader , Clear , ClearContents , ClearHeaders , End , Flush , R...