<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %> <%-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sampleposteddata.aspx * This page lists the data posted by a form. * * Version: 2.0 RC2 * Modified: 2004-11-13 01:12:41 * * File Authors: * Frederico Caldeira Knabben (fredck@fckeditor.net) --%> FCKeditor - Samples - Posted Data

FCKeditor - Samples - Posted Data

This page lists all data posted by the form.
<% foreach ( string sForm in Request.Form ) { %> <% } %>
Field Name   Value
<%=sForm%> <%=Server.HtmlEncode( Request.Form[sForm] )%>