%@ CodePage=65001 Language="VBScript"%>
<% Option Explicit %>
	
		FCKeditor - Samples - Posted Data
		
		
		
	
	
		FCKeditor - Samples - Posted Data
		This page lists all data posted by the form.
		
		
			
				| Field Name   | 
				Value | 
			
			<% 
			Dim sForm
			For Each sForm in Request.Form 
			%>
			
				| <%=sForm%> | 
				<%=Server.HTMLEncode( Request.Form(sForm) )%> | 
			
			<% Next %>