Webform equivilent for textbox1.appendtext(...)??

  • Thread starter Thread starter trint
  • Start date Start date
T

trint

How can I do this WinForm code in a WebForm please?

this.TextBox1.AppendText(Environment.NewLine);
this.textBox1.AppendText(Calendar1.SelectedDate.ToShortDateString());

Thanks,
Trint
 
this.TextBox1.Text+=Envir­onment.NewLine;

this.textBox1.Text+=Calendar1.SelectedDate.ToShortDateS­tring();


--Cheers!
 
Back
Top