Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
92 views

Is there a chance to use App_Browsers to detect support of the HTML5 File API?

Using the HTML5 File API to upload files, I am currently using some hardcoded checking of the browsers that support them, depending on the user agent string: internal bool IsHtml5FileUploadCapable { ...
2
votes
3answers
199 views

check if browser supports data uri at run time

I am looking to use data uri base 64 strings in my asp.net c# web application. I know only some browsers support this, so at runtime I will need to check if the current browser supports base 64 ...
1
vote
1answer
113 views

.Net Android.Browser files

Can anyone tell me where I can find a list of Browser capabilities for the Android platform? I need to construct a .Browser file for it as part of my ASP.Net MVC3 project. Some links would be much ...
1
vote
0answers
43 views

Loading .browser file dynamically in a non-ASP.net website applications

I have an offline process that needs to do some analysis on User-Agent strings, that are logged from requests on our production machines, the problem is I need to use the .browser file that has the ...
1
vote
4answers
702 views

Has anyone got HttpBrowserCapabilities working in asp.net

HttpBrowserCapabilities browse = Request.Browser; just seems to bring back IE or Netscape for all other browsers. I have updated the C:\WINDOWS\system32\inetsrv browscap.ini file on the developer pc ...
1
vote
1answer
141 views

Detect whether the ie8 xss filter is enabled

Is there a method by which we can detect if a user using ie8 has the XSS filter enabled? As far as I can tell, nothing changes in the User Agent or in the http headers when ie8 has the XSS filter ...
1
vote
2answers
956 views

Does Request.Browser work always as expected?

I have the following piece of code to add the right CSS file in the "head" depending on browser, string browserName = Request.Browser.Browser; string browserVersion = ...
1
vote
2answers
253 views

HttpBrowserCapabilities Custom Browser file parsing

If I have a custom .browser file, and I want to evaluate what will happen if it is given a particular User Agent, is there any way to do that through the .NET API? I was attempting to use ...
0
votes
1answer
32 views

Check if (mobile)browser support background images

I am building a mobile site and the footer has an background. I want to check if the browser supports css property, background-image, if true display background with specific html, else display a ...
0
votes
1answer
82 views

inconsistent browser type value from request object

I am writing a C# application in which I need to retrieve the users browser type. I get the above from the Request object, specifically from: Request.Browser.Type which a member of ...
0
votes
3answers
359 views

HttpBrowserCapabilities missing some information?

I'd like to use the Request.Browser property (HttpBrowserCapabilities class) to determine some properties of the client's system. However I seem to run into some limitations of this class. I can't ...
0
votes
1answer
273 views

Why does HttpBrowserCapabilities not work at all?

I've got a web app targeting .net 3.5 and im trying to render browser specific content, specifically targeting iPads. I've visited my page from various browsers including iPhone, iPad, Chrome, Safari ...