I was working with ASP.NET and I try to change a label text and get the value from data base. here is what i do.
First I add database then I create a linq and then I use query to load it but it won't work.
this is query code
protected void Page_Load(object sender, EventArgs e)
{
DataClasses1DataContext db = new DataClasses1DataContext();
var q = from dc in db.topboxes
where dc.id == (1)
select dc;
Lmain11.Text = q.ToString();
}

and this is what I get as label text
SELECT [t0].[id], [t0].[title], [t0].[dc], [t0].[adminid] FROM [dbo].[topbox] AS [t0] WHERE [t0].[id] = @p0

Can someone please tell me what should I do? It is not the value that I indented to print
and also when I want to get dc from database topbox where id = 1 I also try code without () in where line.
