I sometimes list out the form collection to see whats being passed from a form. Couldnt find the right methods for ASP.Net until now.
<%
for (int iLoop=0;iLoop < Request.Form.Count;iLoop++) {
Response.Write(Request.Form.Keys.Get(iLoop) + " [" + Request.Form[iLoop].ToString() + "]<br>");
}
%>