Posted on: 2/26/2015 12:26:40 PM | Views : 592

I'm trying out a Log activity tracking code for my website which is based on Entity Framework. Below is the code which I'm trying but it gives me the error mentioned as subject in this forum.
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; using System.Collections; using System.Configuration; using System.Diagnostics; using System.Web.UI.WebControls.Expressions; using System.Data.Objects; using testModel; using System.Reflection; using System.Data; using System.Data.Sql; using System.Data.SqlClient; using System.Data.SqlTypes; using System.Web.Security;
namespace BasePage {     public partial class UserActivityPage : System.Web.UI.Page     {         protecte ...

Go to the complete details ...