Guest User

Untitled

a guest
May 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. protected TextBox txtName;
  2. protected Button btnSubmit;
  3.  
  4. // create child control
  5. protected override void CreateChildControls() {
  6. txtName = new TextBox();
  7. this.Controls.Add(txtName);
  8. btnSubmit = new Button();
  9. btnSubmit.Text = "Submit Name";
  10. this.Controls.Add(btnSubmit);
  11. }
Add Comment
Please, Sign In to add comment