以下为引用的内容:
<html> <body> Hello, Your name is <% yourname %> </body> </html> 生成的文件 show.aspx templateBuilder.AppendLine("<html>"); templateBuilder.AppendLine("<body>"); templateBuilder.AppendLine("Hello, Your name is " + this.yourname); templateBuilder.AppendLine("</body>"); templateBuilder.AppendLine("</html>");
生成的文件 show.aspx
templateBuilder.AppendLine(""); templateBuilder.AppendLine(""); templateBuilder.AppendLine("Hello, Your name is " + this.yourname); templateBuilder.AppendLine(""); templateBuilder.AppendLine("");