Guest User

Untitled

a guest
Jun 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. tempcell = new TableCell();
  2. Button tempbutton = new Button();
  3. tempbutton.Text = "Go";
  4. tempbutton.ID = "gobutton" + rowN;
  5. tempbutton.Visible = true;
  6. tempbutton.Click += new EventHandler(tempbutton_Click);
  7. tempcell.Controls.Add(tempbutton);
  8. temprow.Cells.Add(tempcell);
  9.  
  10. <asp:Table ID="ResultTable" visible="false" runat="server"
  11. GridLines="Both" CellSpacing="8">
  12. </asp:Table>
Add Comment
Please, Sign In to add comment