protected void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack)
NameValueCollection submittedValuesCollection = Request.Form;
Response.Write("<b>Submitted Values:<br /></b>");
foreach (string key in submittedValuesCollection.AllKeys)
Response.Write (string.Format("{0} => {1}<br />", key, submittedValuesCollection[key]));
}
Response.Write("<br /><br />");
Show Comments (0)
Loading Comments. Please Wait...