annotate sites/all/libraries/ckeditor/_samples/asp/sample_posteddata.asp @ 2:b74b41bb73f0

-- Google analytics module
author danieleb <danielebarchiesi@me.com>
date Thu, 22 Aug 2013 17:22:54 +0100
parents ff03f76ab3fe
children
rev   line source
danielebarchiesi@0 1 <%@ codepage="65001" language="VBScript" %>
danielebarchiesi@0 2 <% Option Explicit %>
danielebarchiesi@0 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
danielebarchiesi@0 4 <!--
danielebarchiesi@0 5 Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
danielebarchiesi@0 6 For licensing, see LICENSE.html or http://ckeditor.com/license
danielebarchiesi@0 7 -->
danielebarchiesi@0 8 <html xmlns="http://www.w3.org/1999/xhtml">
danielebarchiesi@0 9 <head>
danielebarchiesi@0 10 <title>Sample - CKEditor</title>
danielebarchiesi@0 11 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
danielebarchiesi@0 12 <link type="text/css" rel="stylesheet" href="../sample.css" />
danielebarchiesi@0 13 </head>
danielebarchiesi@0 14 <body>
danielebarchiesi@0 15 <h1 class="samples">
danielebarchiesi@0 16 CKEditor - Posted Data
danielebarchiesi@0 17 </h1>
danielebarchiesi@0 18 <table border="1" cellspacing="0" id="outputSample">
danielebarchiesi@0 19 <colgroup><col width="100" /></colgroup>
danielebarchiesi@0 20 <thead>
danielebarchiesi@0 21 <tr>
danielebarchiesi@0 22 <th>Field&nbsp;Name</th>
danielebarchiesi@0 23 <th>Value</th>
danielebarchiesi@0 24 </tr>
danielebarchiesi@0 25 </thead>
danielebarchiesi@0 26 <%
danielebarchiesi@0 27 Dim sForm
danielebarchiesi@0 28 For Each sForm in Request.Form
danielebarchiesi@0 29 %>
danielebarchiesi@0 30 <tr>
danielebarchiesi@0 31 <th><%=Server.HTMLEncode( sForm )%></th>
danielebarchiesi@0 32 <td><pre class="samples"><%=Server.HTMLEncode( Request.Form(sForm) )%></pre></td>
danielebarchiesi@0 33 </tr>
danielebarchiesi@0 34 <% Next %>
danielebarchiesi@0 35 </table>
danielebarchiesi@0 36 <div id="footer">
danielebarchiesi@0 37 <hr />
danielebarchiesi@0 38 <p>
danielebarchiesi@0 39 CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
danielebarchiesi@0 40 </p>
danielebarchiesi@0 41 <p id="copy">
danielebarchiesi@0 42 Copyright &copy; 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
danielebarchiesi@0 43 </p>
danielebarchiesi@0 44 </div>
danielebarchiesi@0 45 </body>
danielebarchiesi@0 46 </html>