Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I had exactly the same problem, but with another device (NokiaN8), and also traced the problem back to the User-Agent.</p> <p>IIS uses regular expressions to match against the User-Agent string. The root of the problem was that it didn't have any matching regular expressions for the specific device, and ended up in one of the lowest levels of match, where the Default properties were used. The default properties said that the browser didn't support cookies.</p> <p><strong>Solution:</strong> </p> <ol> <li>Add a folder in your web project named <code>App_Browsers</code> (right-click the project, choose: <code>Add &gt; Add ASP.NET Folder &gt; App_Browsers</code>).</li> <li>Add a file in that folder (right-click, choose: <code>Add &gt; New Item</code>). The file can have any name, but must have the <code>.browser</code> ending.</li> <li>Add a good matching expression and the correct capabilities (or add changes to the <code>Default</code>).</li> </ol> <p>Two examples:</p> <pre class="lang-xml prettyprint-override"><code>&lt;browsers&gt; &lt;browser id="NokiaN8" parentID="Mozilla"&gt; &lt;identification&gt; &lt;userAgent match="NokiaN8" /&gt; &lt;/identification&gt; &lt;capabilities&gt; &lt;capability name="browser" value="NokiaN8" /&gt; &lt;capability name="cookies" value="true" /&gt; &lt;/capabilities&gt; &lt;/browser&gt; &lt;/browsers&gt; </code></pre> <p>Or change the default:</p> <pre class="lang-xml prettyprint-override"><code>&lt;browsers&gt; &lt;browser refID="Default"&gt; &lt;capabilities&gt; &lt;capability name="cookies" value="true" /&gt; &lt;/capabilities&gt; &lt;/browser&gt; &lt;/browsers&gt; </code></pre> <blockquote> <p>More info: <a href="http://msdn.microsoft.com/en-us/library/ms228122.aspx" rel="noreferrer"><strong>Browser Definition File Schema</strong></a></p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload