how do I get C# in ASP.NET to make multi lined arguments?

  • Thread starter Thread starter [ J ] a [ Y ]
  • Start date Start date
J

[ J ] a [ Y ]

Guest
Like so:

response.write("this is
some text");

I'm using VWD and it doesnt want to compile >.< thanks all
 
You can't put a line break in the middle of a string.

response.write("this is " +
"some text");
 
Back
Top