我正在为一个大学项目学习.NET,他已经掌握了很多PHP的知识。我想知道如何在.NET中打印html内容,就像我在PHP中一样。
PHP示例:
<?php
$array = array("foo", "bar", "hello", "world");
for($i=0; $i<count($array); $i++) {
echo "<p id=\"$i\">This is paragraph $i.</p>";
}
?>
这是我尝试实现和理解的一个简单例子。我如何在ASP.NET中执行上述操作?
感谢您的帮助。
答案 0 :(得分:1)
执行以下操作:
<%
var array = new string[]{"foo", "bar", "hello", "world"};
Response.ContentType = "text/html";
for(int i = 0; i < array.Length; i++) {
Response.Write(string.Format("<p id=\"{0}\">This is paragraph {0}.</p>",i));
}
%>
答案 1 :(得分:1)
将此内容写在您的网页上
<%
var array = new string[]{"foo", "bar", "hello", "world"};
Response.ContentType = "text/html";
for(int i = 0; i < array.Length; i++)
{
Response.Write(string.Format("<p id=\"{0}\">This is paragraph {0}.</p>",i));
}
%>