source: companies/celepar/news_admin/templates/celepar/fckeditor/to_delete/_samples/asp/sampleposteddata.asp @ 763

Revision 763, 1.5 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<%@ CodePage=65001 Language="VBScript"%>
2<% Option Explicit %>
3<!--
4 * FCKeditor - The text editor for internet
5 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
6 *
7 * Licensed under the terms of the GNU Lesser General Public License:
8 *              http://www.opensource.org/licenses/lgpl-license.php
9 *
10 * For further information visit:
11 *              http://www.fckeditor.net/
12 *
13 * "Support Open Source software. What about a donation today?"
14 *
15 * File Name: sampleposteddata.asp
16 *      This page lists the data posted by a form.
17 *
18 * File Authors:
19 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
20-->
21<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
22<html>
23        <head>
24                <title>FCKeditor - Samples - Posted Data</title>
25                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
26                <meta name="robots" content="noindex, nofollow">
27                <link href="../sample.css" rel="stylesheet" type="text/css" />
28        </head>
29        <body>
30                <h1>FCKeditor - Samples - Posted Data</h1>
31                This page lists all data posted by the form.
32                <hr>
33                <table width="100%" border="1" cellspacing="0" bordercolor="#999999">
34                        <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
35                                <td noWrap>Field Name&nbsp;&nbsp;</td>
36                                <td>Value</td>
37                        </tr>
38                        <%
39                        Dim sForm
40                        For Each sForm in Request.Form
41                        %>
42                        <tr>
43                                <td valign="top" nowrap><b><%=sForm%></b></td>
44                                <td width="100%"><%=Server.HTMLEncode( Request.Form(sForm) )%></td>
45                        </tr>
46                        <% Next %>
47                </table>
48        </body>
49</html>
Note: See TracBrowser for help on using the repository browser.