Note that there are some explanatory texts on larger screens.

plurals
  1. POThe type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly reference?)
    primarykey
    data
    text
    <p>What I have "Tried" 1. Adding reference to , System.Core, System.Xml.Linq, System.Data.Linq by right clicking on my website root as well as in individual pages. </p> <ol> <li><p>By adding assembly in web.config as shown below, </p> <pre><code>&lt;configuration&gt; &lt;connectionStrings&gt; &lt;add name="ConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\PayrollSystem_DB.mdb" providerName="System.Data.OleDb"/&gt; &lt;/connectionStrings&gt; &lt;location path="~/Styles/StyleSheet.css"&gt; &lt;system.web&gt; &lt;compilation debug="true"&gt; &lt;assemblies&gt; &lt;add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;add assembly="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/&gt; &lt;/assemblies&gt; &lt;/compilation&gt; &lt;authentication mode="Forms"&gt; &lt;forms loginUrl="~/Login/frmLogin.aspx"/&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;deny users="?"/&gt; &lt;/authorization&gt; &lt;/system.web&gt; &lt;/location&gt; &lt;/configuration&gt; </code></pre></li> </ol> <p>It was working fine in the project earlier today. I ran into first web.config issue when I added </p> <pre><code> &lt;authentication&gt; and &lt;authorization&gt; </code></pre> <p>tags my CSS stop working on the login page. Then I added Location tag as shown above and it fixed my css for login page but then I started getting this Linq error on every page. </p> <p>I searched online it was advised it is web.config issue so I should add the reference for System.core assembly in the web.config file which I did but still same issue. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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