JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _samples / asp / sample_posteddata.asp
1 <%@  codepage="65001" language="VBScript" %>\r
2 <% Option Explicit %>\r
3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
4 <!--\r
5 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
6 For licensing, see LICENSE.html or http://ckeditor.com/license\r
7 -->\r
8 <html xmlns="http://www.w3.org/1999/xhtml">\r
9 <head>\r
10         <title>Sample - CKEditor</title>\r
11         <meta http-equiv="content-type" content="text/html; charset=utf-8" />\r
12         <link type="text/css" rel="stylesheet" href="../sample.css" />\r
13 </head>\r
14 <body>\r
15         <h1>\r
16                 CKEditor - Posted Data\r
17         </h1>\r
18         <table border="1" cellspacing="0" id="outputSample">\r
19                 <colgroup><col width="100" /></colgroup>\r
20                 <thead>\r
21                         <tr>\r
22                                 <th>Field&nbsp;Name</th>\r
23                                 <th>Value</th>\r
24                         </tr>\r
25                 </thead>\r
26                         <%\r
27                         Dim sForm\r
28                         For Each sForm in Request.Form\r
29                         %>\r
30                         <tr>\r
31                                 <th><%=Server.HTMLEncode( sForm )%></th>\r
32                                 <td><pre><%=Server.HTMLEncode( Request.Form(sForm) )%></pre></td>\r
33                         </tr>\r
34                         <% Next %>\r
35         </table>\r
36         <div id="footer">\r
37                 <hr />\r
38                 <p>\r
39                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
40                 </p>\r
41                 <p id="copy">\r
42                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.\r
43                 </p>\r
44         </div>\r
45 </body>\r
46 </html>\r