Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>By default, a new web app in 3.5 has the following References:</p> <ul> <li>System System.Configuration</li> <li>System.Core </li> <li>System.Data</li> <li>System.Data.DataSetExtensions</li> <li>System.Drawing</li> <li>System.EnterpriseServices</li> <li>System.Web</li> <li>System.WebExtensions</li> <li>System.Web.Mobile</li> <li>System.Web.Services</li> <li>System.Xml</li> <li>System.Xml.Linq</li> </ul> <p>in addition, in the web.config file, you'll find the following assembly information near the top of your web.config file: </p> <pre><code> &lt;assemblies&gt; &lt;add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;/assemblies&gt; </code></pre> <p>and you will also find the runtime assembly binding found at the bottom of the file:</p> <pre><code> &lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/&gt; &lt;bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/&gt; &lt;/dependentAssembly&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/&gt; &lt;bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/&gt; &lt;/dependentAssembly&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; </code></pre> <p>I'm wagering that not having all of these references is causing issues with your var declarations. Verify all of these contents were properly added/created.</p>
 

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