Author: Kyle1983 | Posted on: 9/12/2009 2:38:05 AM | Views : 1206

 Hi I am developing a website with asp.net with C#. And
I am using
qDataContext oy = new qDataContext(); var mydata = new qDataContext(); var label1 = from take in mydata.allLabels where take.allLabelID == 1 select take.allLabelText; Label1.Text = label1.First(); var label2 = from take in mydata.allLabels where take.allLabelID == 2 select take.allLabelText; Label2.Text = label2.First(); var label3 = from take in mydata.allLabels where take.allLabelID == 3 select take.allLabelText; Label3.Text = label3.First(); . . . .
 

like codes to take content of labels and buttons from my database in their tables (like allLabel and allButton).
My question is: each page of my site tota ...

Go to the complete details ...