[ Index ]
 

Code source de FCKeditor 2.4

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/_samples/asp/ -> sampleposteddata.asp (source)

   1  <%@ CodePage=65001 Language="VBScript"%>
   2  <% Option Explicit %>
   3  <!--
   4   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
   5   * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   6   * 
   7   * == BEGIN LICENSE ==
   8   * 
   9   * Licensed under the terms of any of the following licenses at your
  10   * choice:
  11   * 
  12   *  - GNU General Public License Version 2 or later (the "GPL")
  13   *    http://www.gnu.org/licenses/gpl.html
  14   * 
  15   *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  16   *    http://www.gnu.org/licenses/lgpl.html
  17   * 
  18   *  - Mozilla Public License Version 1.1 or later (the "MPL")
  19   *    http://www.mozilla.org/MPL/MPL-1.1.html
  20   * 
  21   * == END LICENSE ==
  22   * 
  23   * File Name: sampleposteddata.asp
  24   *     This page lists the data posted by a form.
  25   * 
  26   * File Authors:
  27   *         Frederico Caldeira Knabben (www.fckeditor.net)
  28  -->
  29  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  30  <html>
  31      <head>
  32          <title>FCKeditor - Samples - Posted Data</title>
  33          <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  34          <meta name="robots" content="noindex, nofollow">
  35          <link href="../sample.css" rel="stylesheet" type="text/css" />
  36      </head>
  37      <body>
  38          <h1>FCKeditor - Samples - Posted Data</h1>
  39          This page lists all data posted by the form.
  40          <hr>
  41          <table width="100%" border="1" cellspacing="0" bordercolor="#999999">
  42              <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
  43                  <td noWrap>Field Name&nbsp;&nbsp;</td>
  44                  <td>Value</td>
  45              </tr>
  46              <% 
  47              Dim sForm
  48              For Each sForm in Request.Form 
  49              %>
  50              <tr>
  51                  <td valign="top" nowrap><b><%=sForm%></b></td>
  52                  <td width="100%"><%=Server.HTMLEncode( Request.Form(sForm) )%></td>
  53              </tr>
  54              <% Next %>
  55          </table>
  56      </body>
  57  </html>


Généré le : Sun Feb 25 15:28:05 2007 par Balluche grâce à PHPXref 0.7