Hi,
I have created a new web application in asp.net.I am using VS 2008.
In the web form,I have placed a textbox and a button.
In the button click event,I have written as follows:
TextBox1.text=" abc"+ Environment.New Line + "<hr>";
I want to get the output as (abc and a horizontalrule in the textbox)
abc
--------------------------------------------------
But I am getting as follows.
abc
<hr>
Please help me regarding this.
Thanks,
Silpa
I have created a new web application in asp.net.I am using VS 2008.
In the web form,I have placed a textbox and a button.
In the button click event,I have written as follows:
TextBox1.text=" abc"+ Environment.New Line + "<hr>";
I want to get the output as (abc and a horizontalrule in the textbox)
abc
--------------------------------------------------
But I am getting as follows.
abc
<hr>
Please help me regarding this.
Thanks,
Silpa
Comment