I thing you miss the name space
using System.Data.Linq;
i already use that
namespace..
Share this page across other social networking sites
Check whether the linq assembly is
referred in your web.config file.
I think this is the
problem of your web.config:. so just try the following
add a line in my your web.config:
<compilation debug="true">
<assemblies>
<add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
Share this page across other social networking sites