var
Tb: TextBox;
begin
Tb := TextBox.create;
Tb.id := 'TextBox1';
Tb.text := 'teste';
Page.Controls.add(tb);
end;