I made that change some time ago.
<html>
<head runat="server" id="Head1">
<title>Posted Values</title>
<style type="text/css">
body,td,p,div,table { font:normal 72px arial;}
</style>
<link href="http://cutesoft.net/AgentStyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="1" cellspacing="0" cellpadding="3" style="border-collapse:collapse;width:400px;">
<tr style="color:white;background-color:steelblue">
<td>Name</td>
<td>Value</td>
</tr>
<%foreach(string key in Request.Form.AllKeys){%>
<tr>
<td><%=HttpUtility.HtmlEncode(key+"")%></td>
<td><pre><%=HttpUtility.HtmlEncode(Request.Form[key]+"")%></pre>
</td>
</tr>
<%}%>
</table>
</body>
</html>