代码编辑器:
x
1
<!DOCTYPE html>
2
<meta charset="utf-8"/>
3
<ul>
4
@for each x in Request.ServerVariables
5
@<li>@x</li>
6
next x
7
</ul>
8
<!DOCTYPE html>
<meta charset="utf-8"/>
<ul>
@for each x in Request.ServerVariables
@<li>@x</li>
next x
</ul>