|
-
Sep 22nd, 2008, 07:05 AM
#1
Thread Starter
Hyperactive Member
[RESOLVED] [2005] Multiline with web
Hi
I want to use multiline with web forms,
If I use this:
for (int a = 0; a < 10; a++)
Response.Write("Abbas Haider" + Environment.NewLine);
or
for (int a = 0; a < 10; a++)
Response.Write("Abbas Haider" + "\n");
It does not print the text in newline.
Also the textbox does not support multiline property like in windows forms.
So I can write:
for (int a = 0; a < 10; a++)
TextBox1.Text =TextBox1.Text + "Abbas Haider" + Environment.NewLine;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|