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!
 
Thanks,
That was it!
Trint

.Net programmer
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top