hi i binded Labels And LinkButton Dyanmically In Tables .. Linkbuttons Appears infront Of labels.. i Want To carry Text of that Label through QueryString.. I used following Code.. pls Suggest me Wat to Do?
public void Deladdress()
{
DataSet dl = Deliverydetails();
int count = dl.Tables[0].Rows.Count;
for (int i = 0; i < count; i++)
{
TableRow tr = new TableRow();
TableCell td0 = new TableCell();
TableCell td1 = new TableCell();
Label lb0 = new Label();
//Label lb1 = new Label();
LinkButton lbl = new LinkButton();
addr = dl.Tables[0].Rows
["clad_name"].ToString() + ',' + dl.Tables[0].Rows["clad_line_1"].ToString());
lb0.Text = addr;
lb0.ID = Convert.ToString((i + "lb0"));
lbl.Text = "UpDate" ... Go to the complete details ...
Found interesting? Add this to: