Hi,
I'm a brand new for programming in ASP.net with some C#. But I not able to understand this error.
Source Error:
Line 29: DataContext db = new DataContext();
Line 30:
Line 31: var Article = (from a in db.Articles
Line 32: orderby a.Date descending
Line 33: select a);
Here a paste of my code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class MemberZone_Articles : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
bool isAuth = Convert.ToBoolean(Session["isUserAuthenticated"]);
if (isAuth)
{ Go to the complete details ...