From: Raphael D. P. <rap...@us...> - 2005-09-01 18:15:57
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/_samples/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32492/thywidgets/external/fckeditor/_samples/html Added Files: sample01.html sample02.html sample03.html sample04.html sample05.html sample06.config.js sample06.html sample07.html sample08.html sampleposteddata.asp sampleposteddata.html Log Message: Synching... --- NEW FILE: sample04.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample04.html * Sample page. * * Version: 2.0 RC3 * Modified: 2004-11-22 11:16:52 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../../fckeditor.js"></script> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbToolbars' ) ; oCombo.value = editorInstance.ToolbarSet.Name ; oCombo.style.visibility = '' ; } function ChangeLanguage( languageCode ) { window.location.href = window.location.pathname + "?" + languageCode ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 4</h1> This sample shows how to change the editor toolbar. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select the toolbar to load: </td> <td> <select id="cmbToolbars" onchange="ChangeLanguage(this.value);" style="VISIBILITY: hidden"> <option value="Default" selected>Default</option> <option value="Basic">Basic</option> </select> </td> </tr> </table> <br> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/_samples/')+1) ; // Get the toolbar from the URL. var sToolbar ; if ( document.location.search.length > 1 ) sToolbar = document.location.search.substr(1) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; if ( sToolbar != null ) oFCKeditor.ToolbarSet = sToolbar ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sample02.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample02.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-02-23 20:50:24 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../../fckeditor.js"></script> <script type="text/javascript"> window.onload = function() { // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.ReplaceTextarea() ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 2</h1> This sample displays a normal HTML form with an FCKeditor with full features enabled. It uses the "ReplaceTextarea" command to create the editor. <hr> <form action="sampleposteddata.asp" method="post" target="_blank"> <div> <textarea name="FCKeditor1" style="WIDTH: 100%; HEIGHT: 200px">This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</textarea> </div> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sample05.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample05.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-01-12 20:09:28 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../../fckeditor.js"></script> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbSkins' ) ; // Get the active skin. var sSkin = editorInstance.Config['SkinPath'] ; sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ; oCombo.value = sSkin ; oCombo.style.visibility = '' ; } function ChangeLanguage( languageCode ) { window.location.href = window.location.pathname + "?" + languageCode ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 5</h1> This sample shows how to change the editor skin. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select the skin to load: </td> <td> <select id="cmbSkins" onchange="ChangeLanguage(this.value);" style="VISIBILITY: hidden"> <option value="default" selected>Default</option> <option value="office2003">Office 2003</option> <option value="silver">Silver</option> </select> </td> </tr> </table> <br> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/_samples/')+1) ; // Get the skin from the URL. var sSkin ; if ( document.location.search.length > 1 ) sSkin = document.location.search.substr(1) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; if ( sSkin != null ) oFCKeditor.Config['SkinPath'] = sBasePath + 'editor/skins/' + sSkin + '/' ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sample08.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample08.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-03-02 09:30:25 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../../fckeditor.js"></script> <script type="text/javascript"> // FCKeditor_OnComplete is a special function that is called when an editor // instance is loaded ad available to the API. It must be named exactly in // this way. function FCKeditor_OnComplete( editorInstance ) { // Show the editor name and description in the browser status bar. document.getElementById('eMessage').innerHTML = 'Instance "' + editorInstance.Name + '" loaded - ' + editorInstance.Description ; // Show this sample buttons. document.getElementById('eButtons').style.visibility = '' ; } function InsertHTML() { // Get the editor instance that we want to interact with. var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ; // Check the active editing mode. if ( oEditor.EditMode == FCK_EDITMODE_WYSIWYG ) { // Insert the desired HTML. oEditor.InsertHtml( '- This is some <b>sample</b> HTML -' ) ; } else alert( 'You must be on WYSIWYG mode!' ) ; } function SetContents() { // Get the editor instance that we want to interact with. var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ; // Set the editor contents (replace the actual one). oEditor.SetHTML( 'This is the <b>new content</b> I want in the editor.' ) ; } function GetContents() { // Get the editor instance that we want to interact with. var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ; // Get the editor contents in XHTML. alert( oEditor.GetXHTML( true ) ) ; // "true" means you want it formatted. } function ExecuteCommand( commandName ) { // Get the editor instance that we want to interact with. var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ; // Execute the command. oEditor.Commands.GetCommand( commandName ).Execute() ; } function GetLength() { // This functions shows that you can interact directly with the editor area // DOM. In this way you have the freedom to do anything you want with it. // Get the editor instance that we want to interact with. var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ; // Get the Editor Area DOM (Document object). var oDOM = oEditor.EditorDocument ; var iLength ; // The are two diffent ways to get the text (without HTML markups). // It is browser specific. if ( document.all ) // If Internet Explorer. { iLength = oDOM.body.innerText.length ; } else // If Gecko. { var r = oDOM.createRange() ; r.selectNodeContents( oDOM.body ) ; iLength = r.toString().length ; } alert( 'Actual text length (without HTML markups): ' + iLength + ' characters' ) ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 8</h1> This sample shows how to use the FCKeditor Javascript API to interact with the editor at runtime. <hr> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> <div> </div> <hr> <div id="eMessage"> </div> <div> </div> <div id="eButtons" style="VISIBILITY: hidden"> <input type="button" value="Insert HTML" onclick="InsertHTML();"> <input type="button" value="Set Editor Contents" onclick="SetContents();"> <input type="button" value="Get Editor Contents (XHTML)" onclick="GetContents();"> <br> <br> <input type="button" value='Execute "Bold" Command' onclick="ExecuteCommand('Bold');"> <input type="button" value='Execute "Link" Command' onclick="ExecuteCommand('Link');"> <br> <br> <input type="button" value="Interact with the Editor Area DOM" onclick="GetLength();"> </div> </body> </html> --- NEW FILE: sample06.config.js --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sample06.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample06.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-01-19 17:40:22 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Javascript - 6</h1> This sample shows a sample plugin implementation. <br> These are sample "Find" and "Replace" plugin that do exactly the same thing that the built in ones do. Use the green toolbar buttons the test then. <br> There is also another sample plugin that is available in the package: the "Placeholder" command (use the yellow icon). <hr> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/_samples/')+1) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; // Set the custom configurations file path (in this way the original file is mantained). oFCKeditor.Config['CustomConfigurationsPath'] = sBasePath + '_samples/html/sample06.config.js' ; // Let's use a custom toolbar for this sample. oFCKeditor.ToolbarSet = 'PluginTest' ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sample01.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample01.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-03-02 09:39:46 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Javascript - Sample 1</h1> This sample displays a normal HTML form with an FCKeditor with full features enabled. <hr> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sample07.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample07.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-02-23 17:03:49 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../../fckeditor.js"></script> </head> <body> <h1>FCKeditor - Javascript - Sample 7</h1> In this sample the user can edit the complete page contents and header (from <HTML> to </HTML>). <hr> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Config['FullPage'] = true ; oFCKeditor.Value = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Full Page Test</title><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/></head><body>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</body></html>' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sample03.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sample03.html * Sample page. * * Version: 2.0 RC3 * Modified: 2005-03-01 17:50:45 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../../fckeditor.js"></script> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var iCounter = 0 ; var oCombo = document.getElementById( 'cmbLanguages' ) ; for ( code in editorInstance.Language.AvailableLanguages ) { AddComboOption( oCombo, editorInstance.Language.AvailableLanguages[code] + ' (' + code + ')', code ) ; iCounter++ ; } oCombo.value = editorInstance.Language.ActiveLanguage.Code ; document.getElementById('eNumLangs').innerHTML = '(' + iCounter + ' languages available!)' ; } function AddComboOption(combo, optionText, optionValue) { var oOption = document.createElement("OPTION") ; combo.options.add(oOption) ; oOption.innerHTML = optionText ; oOption.value = optionValue ; return oOption ; } function ChangeLanguage( languageCode ) { window.location.href = window.location.pathname + "?" + languageCode ; } </script> </head> <body> <h1>FCKeditor - Javascript - Sample 3</h1> This sample shows the editor in all its available languages. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select a language: </td> <td> <select id="cmbLanguages" onchange="ChangeLanguage(this.value);"> </select> </td> <td> <span id="eNumLangs"></span> </td> </tr> </table> <br> <form action="sampleposteddata.asp" method="post" target="_blank"> <script type="text/javascript"> <!-- // Automatically calculates the editor base path based on the _samples directory. // This is usefull only for these samples. A real application should use something like this: // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/_samples/')+1) ; var sLang ; if ( document.location.search.length > 1 ) sLang = document.location.search.substr(1) ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; if ( sLang == null ) { oFCKeditor.Config["AutoDetectLanguage"] = true ; oFCKeditor.Config["DefaultLanguage"] = "en" ; } else { oFCKeditor.Config["AutoDetectLanguage"] = false ; oFCKeditor.Config["DefaultLanguage"] = sLang ; } oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ; oFCKeditor.Create() ; //--> </script> <br> <input type="submit" value="Submit"> </form> </body> </html> --- NEW FILE: sampleposteddata.html --- <!-- * FCKeditor - The text editor for internet * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * File Name: sampleposteddata.html * This page lists the data posted by a form. It uses the URL (GET data), * so it's limited to 2KB of data. * * Version: 2.0 RC3 * Modified: 2004-11-23 20:35:40 * * File Authors: * Frederico Caldeira Knabben (fr...@fc...) --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>FCKeditor - Samples - Posted Data</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>FCKeditor - Samples - Posted Data</h1> This page lists all data posted by the form. It uses the "QueryString" to search for data submitted using the "GET" method, so it is limited to 2KB. <hr> <table width="100%" border="1" cellspacing="0" bordercolor="#999999"> <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999"> <td>Field</td> <td>Value</td> </tr> <script type="text/javascript"> <!-- function HTMLEncode( text ) { text = text.replace(/&/g, "&") ; text = text.replace(/"/g, """) ; text = text.replace(/</g, "<") ; text = text.replace(/>/g, ">") ; text = text.replace(/'/g, "'") ; return text ; } var aParams = document.location.search.substr(1).split('&') ; for ( i = 0 ; i < aParams.length ; i++ ) { var aParam = aParams[i].split('=') ; var sParamName = aParam[0] ; var sParamValue = aParam[1] ; document.write( '<tr>' ) ; document.write( '<td valign="top" nowrap><b>' + sParamName + '</b></td>' ) ; document.write( '<td width="100%">' + HTMLEncode( unescape( sParamValue.replace( /\+/g, ' ' ) ) ) + '</td>' ) ; document.write( '</tr>' ) ; } //--> </script> </table> </body> </html> --- NEW FILE: sampleposteddata.asp --- (This appears to be a binary file; contents omitted.) |