Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample01.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample01.aspx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample01.aspx	(revision 1164)
@@ -0,0 +1,64 @@
+<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %>
+<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<%--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2005 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sample01.aspx
+ * 	Sample page.
+ * 
+ * File Authors:
+ * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
+--%>
+<script runat="server" language="C#">
+	// This sample doesnt use a code behind file to avoid the user to have to compile
+	// the page to run it.
+	protected override void OnLoad(EventArgs e)
+	{
+		// 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:
+		// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
+		string sPath = Request.Url.AbsolutePath ;
+		int iIndex = sPath.LastIndexOf( "_samples") ;
+		FCKeditor1.BasePath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
+	}
+</script>
+<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">
+
+function FCKeditor_OnComplete( editorInstance )
+{
+	window.status = editorInstance.Description ;
+}
+
+		</script>
+	</head>
+	<body>
+		<h1>FCKeditor - ASP.Net - Sample 1</h1>
+		This sample displays a normal HTML form with an FCKeditor with full features 
+		enabled.
+		<br>
+		No code behind is used so you don't need to compile the ASPX pages to make it 
+		work. All other samples use code behind.
+		<hr>
+		<form action="sampleposteddata.aspx" method="post" target="_blank">
+			<FCKeditorV2:FCKeditor id="FCKeditor1" runat="server" value='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'></FCKeditorV2:FCKeditor>
+			<br>
+			<input type="submit" value="Submit">
+		</form>
+	</body>
+</html>
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx	(revision 1164)
@@ -0,0 +1,56 @@
+<%@ Page ValidateRequest="false" language="c#" Codebehind="sample02.aspx.cs" Inherits="FredCK.FCKeditorV2.Samples.Sample02" AutoEventWireup="false" %>
+<%@ Register TagPrefix="fckeditorv2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<%--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2005 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sample02.aspx
+ * 	Sample page.
+ * 
+ * File Authors:
+ * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
+--%>
+<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">
+
+function FCKeditor_OnComplete( editorInstance )
+{
+	window.status = editorInstance.Description ;
+}
+
+		</script>
+	</head>
+	<body>
+		<h1>FCKeditor - ASP.Net - Sample 2</h1>
+		This sample displays a normal HTML form with an FCKeditor with full features 
+		enabled.
+		<br>
+		The only difference from sample01 is that this page uses code behind and the 
+		submitted data is shown in the page itself.
+		<hr>
+		<form method="post" runat="server">
+			<FCKeditorV2:FCKeditor id="FCKeditor1" runat="server" />
+			<br>
+			<input id="btnSubmit" type="submit" value="Submit" runat="server">
+		</form>
+		<div id="eSubmittedDataBlock" runat="server">
+			<hr>
+			This is the submitted data:<br>
+			<textarea id="txtSubmitted" runat="server" rows="10" cols="60" style="WIDTH: 100%" readonly></textarea>
+		</div>
+	</body>
+</html>
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx.cs
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx.cs	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx.cs	(revision 1164)
@@ -0,0 +1,75 @@
+using System;
+using System.Collections;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Web;
+using System.Web.SessionState;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using System.Web.UI.HtmlControls;
+
+namespace FredCK.FCKeditorV2.Samples
+{
+	public class Sample02 : System.Web.UI.Page
+	{
+		protected System.Web.UI.HtmlControls.HtmlTextArea txtSubmitted;
+		protected System.Web.UI.HtmlControls.HtmlInputButton btnSubmit;
+		protected System.Web.UI.HtmlControls.HtmlGenericControl eSubmittedDataBlock;
+
+		protected FredCK.FCKeditorV2.FCKeditor FCKeditor1;
+	
+		private void Page_Load(object sender, System.EventArgs e)
+		{
+			// We'll do initializartion settings in the editor only the first time.
+			// Once the page is submitted, nothing must be done in the OnLoad.
+			if ( Page.IsPostBack )
+				return ;
+
+			eSubmittedDataBlock.Visible = false ;
+
+			// 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:
+			// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
+			string sPath = Request.Url.AbsolutePath ;
+			int iIndex = sPath.LastIndexOf( "_samples") ;
+			sPath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
+			
+			FCKeditor1.BasePath = sPath ;
+			FCKeditor1.Value = "This is some <strong>sample text</strong>. You are using <a href=\"http://www.fckeditor.net/\">FCKeditor</a>." ;
+			FCKeditor1.ImageBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
+			FCKeditor1.LinkBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ;
+		}
+
+		#region Web Form Designer generated code
+		override protected void OnInit(EventArgs e)
+		{
+			//
+			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
+			//
+			InitializeComponent();
+			base.OnInit(e);
+
+			// This events declarations has been moved to the "OnInit" method
+			// to avoid a bug in Visual Studio to delete then without any advice.
+			this.Load += new System.EventHandler(this.Page_Load);
+			this.btnSubmit.ServerClick += new System.EventHandler(this.btnSubmit_ServerClick);
+		}
+		
+		/// <summary>
+		/// Required method for Designer support - do not modify
+		/// the contents of this method with the code editor.
+		/// </summary>
+		private void InitializeComponent()
+		{    
+
+		}
+		#endregion
+
+		private void btnSubmit_ServerClick(object sender, System.EventArgs e)
+		{
+			eSubmittedDataBlock.Visible = true ;
+			txtSubmitted.Value = HttpUtility.HtmlEncode( FCKeditor1.Value ) ;
+		}
+	}
+}
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx.resx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx.resx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample02.aspx.resx	(revision 1164)
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 1.3
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">1.3</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1">this is my long string</data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        [base64 mime encoded serialized .NET Framework object]
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        [base64 mime encoded string representing a byte array form of the .NET Framework object]
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used forserialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>1.3</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <data name="$this.TrayAutoArrange" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </data>
+  <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>Private</value>
+  </data>
+  <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>False</value>
+  </data>
+</root>
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx	(revision 1164)
@@ -0,0 +1,3 @@
+<%@ Register TagPrefix="fckeditorv2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
+<%@ Control Language="c#" AutoEventWireup="false" Codebehind="sample03.ascx.cs" Inherits="FredCK.FCKeditorV2.Samples.sample031" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
+<FCKeditorV2:FCKeditor id="FCKeditor1" ImageBrowserURL="editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" runat="server" />
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx.cs
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx.cs	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx.cs	(revision 1164)
@@ -0,0 +1,63 @@
+namespace FredCK.FCKeditorV2.Samples
+{
+	using System;
+	using System.Data;
+	using System.Drawing;
+	using System.Web;
+	using System.Web.UI.WebControls;
+	using System.Web.UI.HtmlControls;
+
+	public class sample031 : System.Web.UI.UserControl
+	{
+		protected FredCK.FCKeditorV2.FCKeditor FCKeditor1 ;
+
+		private void Page_Load(object sender, System.EventArgs e)
+		{
+			// We'll do initializartion settings in the editor only the first time.
+			// Once the page is submitted, nothing must be done in the OnLoad.
+			if ( Page.IsPostBack )
+				return ;
+
+			// 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:
+			// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
+			string sPath = Request.Url.AbsolutePath ;
+			int iIndex = sPath.LastIndexOf( "_samples") ;
+			sPath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
+			
+			FCKeditor1.BasePath = sPath ;
+			FCKeditor1.Value = "This is some <strong>sample text</strong>. You are using <a href=\"http://www.fckeditor.net/\">FCKeditor</a>." ;
+			FCKeditor1.ImageBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
+			FCKeditor1.LinkBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ;
+		}
+
+		public string GetFCKeditorValue()
+		{
+			return FCKeditor1.Value ;
+		}
+
+		#region Web Form Designer generated code
+		override protected void OnInit(EventArgs e)
+		{
+			//
+			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
+			//
+			InitializeComponent();
+			base.OnInit(e);
+
+			// This events declarations has been moved to the "OnInit" method
+			// to avoid a bug in Visual Studio to delete then without any advice.
+			this.Load += new System.EventHandler(this.Page_Load);
+		}
+		
+		/// <summary>
+		///		Required method for Designer support - do not modify
+		///		the contents of this method with the code editor.
+		/// </summary>
+		private void InitializeComponent()
+		{
+
+		}
+		#endregion
+	}
+}
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx.resx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx.resx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.ascx.resx	(revision 1164)
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 1.3
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">1.3</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1">this is my long string</data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        [base64 mime encoded serialized .NET Framework object]
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        [base64 mime encoded string representing a byte array form of the .NET Framework object]
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used forserialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>1.3</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>False</value>
+  </data>
+  <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>Private</value>
+  </data>
+  <data name="$this.TrayAutoArrange" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </data>
+</root>
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx	(revision 1164)
@@ -0,0 +1,57 @@
+<%@ Page language="c#" Codebehind="sample03.aspx.cs" AutoEventWireup="false" Inherits="FredCK.FCKeditorV2.Samples.sample03" %>
+<%@ Register TagPrefix="uc1" TagName="sample03" Src="sample03.ascx" %>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<%--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2005 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sample03.aspx
+ * 	Sample page.
+ * 
+ * File Authors:
+ * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
+--%>
+<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">
+
+function FCKeditor_OnComplete( editorInstance )
+{
+	window.status = editorInstance.Description ;
+}
+
+		</script>
+	</head>
+	<body>
+		<h1>FCKeditor - ASP.Net - Sample 3</h1>
+		This sample displays a normal HTML form with an FCKeditor with full features 
+		enabled.
+		<br>
+		The only difference from sample02 is that this page uses a custom control that 
+		includes the editor in the back. This is a test page to see if the editor works 
+		over a control tree hierarchy.
+		<hr>
+		<form method="post" runat="server">
+			<uc1:sample03 id="MyCustomControl" runat="server"></uc1:sample03>
+			<br>
+			<input id="btnSubmit" type="submit" value="Submit" runat="server">
+		</form>
+		<div id="eSubmittedDataBlock" runat="server">
+			<hr>
+			This is the submitted data:<br>
+			<textarea id="txtSubmitted" runat="server" rows="10" cols="60" style="WIDTH: 100%" readonly></textarea>
+		</div>
+	</body>
+</html>
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx.cs
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx.cs	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx.cs	(revision 1164)
@@ -0,0 +1,62 @@
+using System;
+using System.Collections;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Web;
+using System.Web.SessionState;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using System.Web.UI.HtmlControls;
+
+namespace FredCK.FCKeditorV2.Samples
+{
+	public class sample03 : System.Web.UI.Page
+	{
+		protected System.Web.UI.HtmlControls.HtmlInputButton btnSubmit;
+		protected System.Web.UI.HtmlControls.HtmlGenericControl eSubmittedDataBlock;
+		protected System.Web.UI.HtmlControls.HtmlTextArea txtSubmitted;
+
+		protected sample031 MyCustomControl ;
+	
+		private void Page_Load(object sender, System.EventArgs e)
+		{
+			// We'll do initializartion only the first time.
+			// Once the page is submitted, nothing must be done in the OnLoad.
+			if ( Page.IsPostBack )
+				return ;
+
+			eSubmittedDataBlock.Visible = false ;
+		}
+
+		#region Web Form Designer generated code
+		override protected void OnInit(EventArgs e)
+		{
+			//
+			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
+			//
+			InitializeComponent();
+			base.OnInit(e);
+
+			// This events declarations has been moved to the "OnInit" method
+			// to avoid a bug in Visual Studio to delete then without any advice.
+			this.Load += new System.EventHandler(this.Page_Load);
+			this.btnSubmit.ServerClick += new System.EventHandler(this.btnSubmit_ServerClick);
+		}
+		
+		/// <summary>
+		/// Required method for Designer support - do not modify
+		/// the contents of this method with the code editor.
+		/// </summary>
+		private void InitializeComponent()
+		{    
+		}
+		#endregion
+
+		private void btnSubmit_ServerClick(object sender, System.EventArgs e)
+		{
+			eSubmittedDataBlock.Visible = true ;
+			txtSubmitted.Value = HttpUtility.HtmlEncode( MyCustomControl.GetFCKeditorValue() ) ;
+		}
+	}
+}
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx.resx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx.resx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sample03.aspx.resx	(revision 1164)
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 1.3
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">1.3</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1">this is my long string</data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        [base64 mime encoded serialized .NET Framework object]
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        [base64 mime encoded string representing a byte array form of the .NET Framework object]
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used forserialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>1.3</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <data name="$this.TrayAutoArrange" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </data>
+  <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>Private</value>
+  </data>
+  <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>False</value>
+  </data>
+</root>
Index: /FCKeditor.Net/trunk/_samples/aspx/1.1/sampleposteddata.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/1.1/sampleposteddata.aspx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/1.1/sampleposteddata.aspx	(revision 1164)
@@ -0,0 +1,45 @@
+<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %>
+<%--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2005 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sampleposteddata.aspx
+ * 	This page lists the data posted by a form.
+ * 
+ * File Authors:
+ * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
+--%>
+<!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.
+		<hr>
+		<table width="100%" border="1" cellspacing="0" bordercolor="#999999">
+			<tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
+				<td noWrap>Field Name&nbsp;&nbsp;</td>
+				<td>Value</td>
+			</tr>
+			<% foreach ( string sForm in Request.Form ) { %>
+			<tr>
+				<td valign="top" nowrap><b><%=sForm%></b></td>
+				<td width="100%"><%=Server.HtmlEncode( Request.Form[sForm] )%></td>
+			</tr>
+			<% } %>
+		</table>
+	</body>
+</html>
Index: /FCKeditor.Net/trunk/_samples/aspx/2.0/sample01.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/2.0/sample01.aspx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/2.0/sample01.aspx	(revision 1164)
@@ -0,0 +1,64 @@
+<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %>
+<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<%--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2005 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sample01.aspx
+ * 	Sample page.
+ * 
+ * File Authors:
+ * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
+--%>
+<script runat="server" language="C#">
+	// This sample doesnt use a code behind file to avoid the user to have to compile
+	// the page to run it.
+	protected override void OnLoad(EventArgs e)
+	{
+		// 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:
+		// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
+		string sPath = Request.Url.AbsolutePath ;
+		int iIndex = sPath.LastIndexOf( "_samples") ;
+		FCKeditor1.BasePath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
+	}
+</script>
+<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">
+
+function FCKeditor_OnComplete( editorInstance )
+{
+	window.status = editorInstance.Description ;
+}
+
+		</script>
+	</head>
+	<body>
+		<h1>FCKeditor - ASP.Net - Sample 1</h1>
+		This sample displays a normal HTML form with an FCKeditor with full features 
+		enabled.
+		<br>
+		No code behind is used so you don't need to compile the ASPX pages to make it 
+		work. All other samples use code behind.
+		<hr>
+		<form action="sampleposteddata.aspx" method="post" target="_blank">
+			<FCKeditorV2:FCKeditor id="FCKeditor1" runat="server" value='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'></FCKeditorV2:FCKeditor>
+			<br>
+			<input type="submit" value="Submit">
+		</form>
+	</body>
+</html>
Index: /FCKeditor.Net/trunk/_samples/aspx/2.0/sampleposteddata.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/2.0/sampleposteddata.aspx	(revision 1164)
+++ /FCKeditor.Net/trunk/_samples/aspx/2.0/sampleposteddata.aspx	(revision 1164)
@@ -0,0 +1,45 @@
+<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %>
+<%--
+ * FCKeditor - The text editor for internet
+ * Copyright (C) 2003-2005 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/
+ * 
+ * "Support Open Source software. What about a donation today?"
+ * 
+ * File Name: sampleposteddata.aspx
+ * 	This page lists the data posted by a form.
+ * 
+ * File Authors:
+ * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
+--%>
+<!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.
+		<hr>
+		<table width="100%" border="1" cellspacing="0" bordercolor="#999999">
+			<tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
+				<td noWrap>Field Name&nbsp;&nbsp;</td>
+				<td>Value</td>
+			</tr>
+			<% foreach ( string sForm in Request.Form ) { %>
+			<tr>
+				<td valign="top" nowrap><b><%=sForm%></b></td>
+				<td width="100%"><%=Server.HtmlEncode( Request.Form[sForm] )%></td>
+			</tr>
+			<% } %>
+		</table>
+	</body>
+</html>
Index: Keditor.Net/trunk/_samples/aspx/sample01.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample01.aspx	(revision 1163)
+++ 	(revision )
@@ -1,64 +1,0 @@
-<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %>
-<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<%--
- * FCKeditor - The text editor for internet
- * Copyright (C) 2003-2005 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/
- * 
- * "Support Open Source software. What about a donation today?"
- * 
- * File Name: sample01.aspx
- * 	Sample page.
- * 
- * File Authors:
- * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
---%>
-<script runat="server" language="C#">
-	// This sample doesnt use a code behind file to avoid the user to have to compile
-	// the page to run it.
-	protected override void OnLoad(EventArgs e)
-	{
-		// 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:
-		// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
-		string sPath = Request.Url.AbsolutePath ;
-		int iIndex = sPath.LastIndexOf( "_samples") ;
-		FCKeditor1.BasePath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
-	}
-</script>
-<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">
-
-function FCKeditor_OnComplete( editorInstance )
-{
-	window.status = editorInstance.Description ;
-}
-
-		</script>
-	</head>
-	<body>
-		<h1>FCKeditor - ASP.Net - Sample 1</h1>
-		This sample displays a normal HTML form with an FCKeditor with full features 
-		enabled.
-		<br>
-		No code behind is used so you don't need to compile the ASPX pages to make it 
-		work. All other samples use code behind.
-		<hr>
-		<form action="sampleposteddata.aspx" method="post" target="_blank">
-			<FCKeditorV2:FCKeditor id="FCKeditor1" runat="server" value='This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'></FCKeditorV2:FCKeditor>
-			<br>
-			<input type="submit" value="Submit">
-		</form>
-	</body>
-</html>
Index: Keditor.Net/trunk/_samples/aspx/sample02.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample02.aspx	(revision 1163)
+++ 	(revision )
@@ -1,56 +1,0 @@
-<%@ Page ValidateRequest="false" language="c#" Codebehind="sample02.aspx.cs" Inherits="FredCK.FCKeditorV2.Samples.Sample02" AutoEventWireup="false" %>
-<%@ Register TagPrefix="fckeditorv2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<%--
- * FCKeditor - The text editor for internet
- * Copyright (C) 2003-2005 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/
- * 
- * "Support Open Source software. What about a donation today?"
- * 
- * File Name: sample02.aspx
- * 	Sample page.
- * 
- * File Authors:
- * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
---%>
-<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">
-
-function FCKeditor_OnComplete( editorInstance )
-{
-	window.status = editorInstance.Description ;
-}
-
-		</script>
-	</head>
-	<body>
-		<h1>FCKeditor - ASP.Net - Sample 2</h1>
-		This sample displays a normal HTML form with an FCKeditor with full features 
-		enabled.
-		<br>
-		The only difference from sample01 is that this page uses code behind and the 
-		submitted data is shown in the page itself.
-		<hr>
-		<form method="post" runat="server">
-			<FCKeditorV2:FCKeditor id="FCKeditor1" runat="server" />
-			<br>
-			<input id="btnSubmit" type="submit" value="Submit" runat="server">
-		</form>
-		<div id="eSubmittedDataBlock" runat="server">
-			<hr>
-			This is the submitted data:<br>
-			<textarea id="txtSubmitted" runat="server" rows="10" cols="60" style="WIDTH: 100%" readonly></textarea>
-		</div>
-	</body>
-</html>
Index: Keditor.Net/trunk/_samples/aspx/sample02.aspx.cs
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample02.aspx.cs	(revision 1163)
+++ 	(revision )
@@ -1,75 +1,0 @@
-using System;
-using System.Collections;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Web;
-using System.Web.SessionState;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.HtmlControls;
-
-namespace FredCK.FCKeditorV2.Samples
-{
-	public class Sample02 : System.Web.UI.Page
-	{
-		protected System.Web.UI.HtmlControls.HtmlTextArea txtSubmitted;
-		protected System.Web.UI.HtmlControls.HtmlInputButton btnSubmit;
-		protected System.Web.UI.HtmlControls.HtmlGenericControl eSubmittedDataBlock;
-
-		protected FredCK.FCKeditorV2.FCKeditor FCKeditor1;
-	
-		private void Page_Load(object sender, System.EventArgs e)
-		{
-			// We'll do initializartion settings in the editor only the first time.
-			// Once the page is submitted, nothing must be done in the OnLoad.
-			if ( Page.IsPostBack )
-				return ;
-
-			eSubmittedDataBlock.Visible = false ;
-
-			// 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:
-			// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
-			string sPath = Request.Url.AbsolutePath ;
-			int iIndex = sPath.LastIndexOf( "_samples") ;
-			sPath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
-			
-			FCKeditor1.BasePath = sPath ;
-			FCKeditor1.Value = "This is some <strong>sample text</strong>. You are using <a href=\"http://www.fckeditor.net/\">FCKeditor</a>." ;
-			FCKeditor1.ImageBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
-			FCKeditor1.LinkBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ;
-		}
-
-		#region Web Form Designer generated code
-		override protected void OnInit(EventArgs e)
-		{
-			//
-			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
-			//
-			InitializeComponent();
-			base.OnInit(e);
-
-			// This events declarations has been moved to the "OnInit" method
-			// to avoid a bug in Visual Studio to delete then without any advice.
-			this.Load += new System.EventHandler(this.Page_Load);
-			this.btnSubmit.ServerClick += new System.EventHandler(this.btnSubmit_ServerClick);
-		}
-		
-		/// <summary>
-		/// Required method for Designer support - do not modify
-		/// the contents of this method with the code editor.
-		/// </summary>
-		private void InitializeComponent()
-		{    
-
-		}
-		#endregion
-
-		private void btnSubmit_ServerClick(object sender, System.EventArgs e)
-		{
-			eSubmittedDataBlock.Visible = true ;
-			txtSubmitted.Value = HttpUtility.HtmlEncode( FCKeditor1.Value ) ;
-		}
-	}
-}
Index: Keditor.Net/trunk/_samples/aspx/sample02.aspx.resx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample02.aspx.resx	(revision 1163)
+++ 	(revision )
@@ -1,109 +1,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<root>
-  <!-- 
-    Microsoft ResX Schema 
-    
-    Version 1.3
-    
-    The primary goals of this format is to allow a simple XML format 
-    that is mostly human readable. The generation and parsing of the 
-    various data types are done through the TypeConverter classes 
-    associated with the data types.
-    
-    Example:
-    
-    ... ado.net/XML headers & schema ...
-    <resheader name="resmimetype">text/microsoft-resx</resheader>
-    <resheader name="version">1.3</resheader>
-    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
-    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
-    <data name="Name1">this is my long string</data>
-    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
-    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
-        [base64 mime encoded serialized .NET Framework object]
-    </data>
-    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
-        [base64 mime encoded string representing a byte array form of the .NET Framework object]
-    </data>
-                
-    There are any number of "resheader" rows that contain simple 
-    name/value pairs.
-    
-    Each data row contains a name, and value. The row also contains a 
-    type or mimetype. Type corresponds to a .NET class that support 
-    text/value conversion through the TypeConverter architecture. 
-    Classes that don't support this are serialized and stored with the 
-    mimetype set.
-    
-    The mimetype is used forserialized objects, and tells the 
-    ResXResourceReader how to depersist the object. This is currently not 
-    extensible. For a given mimetype the value must be set accordingly:
-    
-    Note - application/x-microsoft.net.object.binary.base64 is the format 
-    that the ResXResourceWriter will generate, however the reader can 
-    read any of the formats listed below.
-    
-    mimetype: application/x-microsoft.net.object.binary.base64
-    value   : The object must be serialized with 
-            : System.Serialization.Formatters.Binary.BinaryFormatter
-            : and then encoded with base64 encoding.
-    
-    mimetype: application/x-microsoft.net.object.soap.base64
-    value   : The object must be serialized with 
-            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
-            : and then encoded with base64 encoding.
-
-    mimetype: application/x-microsoft.net.object.bytearray.base64
-    value   : The object must be serialized into a byte array 
-            : using a System.ComponentModel.TypeConverter
-            : and then encoded with base64 encoding.
-    -->
-  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
-    <xsd:element name="root" msdata:IsDataSet="true">
-      <xsd:complexType>
-        <xsd:choice maxOccurs="unbounded">
-          <xsd:element name="data">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
-              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
-              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
-            </xsd:complexType>
-          </xsd:element>
-          <xsd:element name="resheader">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" use="required" />
-            </xsd:complexType>
-          </xsd:element>
-        </xsd:choice>
-      </xsd:complexType>
-    </xsd:element>
-  </xsd:schema>
-  <resheader name="resmimetype">
-    <value>text/microsoft-resx</value>
-  </resheader>
-  <resheader name="version">
-    <value>1.3</value>
-  </resheader>
-  <resheader name="reader">
-    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <resheader name="writer">
-    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <data name="$this.TrayAutoArrange" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>True</value>
-  </data>
-  <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>Private</value>
-  </data>
-  <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>False</value>
-  </data>
-</root>
Index: Keditor.Net/trunk/_samples/aspx/sample03.ascx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample03.ascx	(revision 1163)
+++ 	(revision )
@@ -1,3 +1,0 @@
-<%@ Register TagPrefix="fckeditorv2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
-<%@ Control Language="c#" AutoEventWireup="false" Codebehind="sample03.ascx.cs" Inherits="FredCK.FCKeditorV2.Samples.sample031" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
-<FCKeditorV2:FCKeditor id="FCKeditor1" ImageBrowserURL="editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" runat="server" />
Index: Keditor.Net/trunk/_samples/aspx/sample03.ascx.cs
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample03.ascx.cs	(revision 1163)
+++ 	(revision )
@@ -1,63 +1,0 @@
-namespace FredCK.FCKeditorV2.Samples
-{
-	using System;
-	using System.Data;
-	using System.Drawing;
-	using System.Web;
-	using System.Web.UI.WebControls;
-	using System.Web.UI.HtmlControls;
-
-	public class sample031 : System.Web.UI.UserControl
-	{
-		protected FredCK.FCKeditorV2.FCKeditor FCKeditor1 ;
-
-		private void Page_Load(object sender, System.EventArgs e)
-		{
-			// We'll do initializartion settings in the editor only the first time.
-			// Once the page is submitted, nothing must be done in the OnLoad.
-			if ( Page.IsPostBack )
-				return ;
-
-			// 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:
-			// FCKeditor1.BasePath = '/FCKeditor/' ;	// '/FCKeditor/' is the default value.
-			string sPath = Request.Url.AbsolutePath ;
-			int iIndex = sPath.LastIndexOf( "_samples") ;
-			sPath = sPath.Remove( iIndex, sPath.Length - iIndex  ) ;
-			
-			FCKeditor1.BasePath = sPath ;
-			FCKeditor1.Value = "This is some <strong>sample text</strong>. You are using <a href=\"http://www.fckeditor.net/\">FCKeditor</a>." ;
-			FCKeditor1.ImageBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/aspx/connector.aspx" ;
-			FCKeditor1.LinkBrowserURL	= sPath + "editor/filemanager/browser/default/browser.html?Connector=connectors/aspx/connector.aspx" ;
-		}
-
-		public string GetFCKeditorValue()
-		{
-			return FCKeditor1.Value ;
-		}
-
-		#region Web Form Designer generated code
-		override protected void OnInit(EventArgs e)
-		{
-			//
-			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
-			//
-			InitializeComponent();
-			base.OnInit(e);
-
-			// This events declarations has been moved to the "OnInit" method
-			// to avoid a bug in Visual Studio to delete then without any advice.
-			this.Load += new System.EventHandler(this.Page_Load);
-		}
-		
-		/// <summary>
-		///		Required method for Designer support - do not modify
-		///		the contents of this method with the code editor.
-		/// </summary>
-		private void InitializeComponent()
-		{
-
-		}
-		#endregion
-	}
-}
Index: Keditor.Net/trunk/_samples/aspx/sample03.ascx.resx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample03.ascx.resx	(revision 1163)
+++ 	(revision )
@@ -1,109 +1,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<root>
-  <!-- 
-    Microsoft ResX Schema 
-    
-    Version 1.3
-    
-    The primary goals of this format is to allow a simple XML format 
-    that is mostly human readable. The generation and parsing of the 
-    various data types are done through the TypeConverter classes 
-    associated with the data types.
-    
-    Example:
-    
-    ... ado.net/XML headers & schema ...
-    <resheader name="resmimetype">text/microsoft-resx</resheader>
-    <resheader name="version">1.3</resheader>
-    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
-    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
-    <data name="Name1">this is my long string</data>
-    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
-    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
-        [base64 mime encoded serialized .NET Framework object]
-    </data>
-    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
-        [base64 mime encoded string representing a byte array form of the .NET Framework object]
-    </data>
-                
-    There are any number of "resheader" rows that contain simple 
-    name/value pairs.
-    
-    Each data row contains a name, and value. The row also contains a 
-    type or mimetype. Type corresponds to a .NET class that support 
-    text/value conversion through the TypeConverter architecture. 
-    Classes that don't support this are serialized and stored with the 
-    mimetype set.
-    
-    The mimetype is used forserialized objects, and tells the 
-    ResXResourceReader how to depersist the object. This is currently not 
-    extensible. For a given mimetype the value must be set accordingly:
-    
-    Note - application/x-microsoft.net.object.binary.base64 is the format 
-    that the ResXResourceWriter will generate, however the reader can 
-    read any of the formats listed below.
-    
-    mimetype: application/x-microsoft.net.object.binary.base64
-    value   : The object must be serialized with 
-            : System.Serialization.Formatters.Binary.BinaryFormatter
-            : and then encoded with base64 encoding.
-    
-    mimetype: application/x-microsoft.net.object.soap.base64
-    value   : The object must be serialized with 
-            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
-            : and then encoded with base64 encoding.
-
-    mimetype: application/x-microsoft.net.object.bytearray.base64
-    value   : The object must be serialized into a byte array 
-            : using a System.ComponentModel.TypeConverter
-            : and then encoded with base64 encoding.
-    -->
-  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
-    <xsd:element name="root" msdata:IsDataSet="true">
-      <xsd:complexType>
-        <xsd:choice maxOccurs="unbounded">
-          <xsd:element name="data">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
-              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
-              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
-            </xsd:complexType>
-          </xsd:element>
-          <xsd:element name="resheader">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" use="required" />
-            </xsd:complexType>
-          </xsd:element>
-        </xsd:choice>
-      </xsd:complexType>
-    </xsd:element>
-  </xsd:schema>
-  <resheader name="resmimetype">
-    <value>text/microsoft-resx</value>
-  </resheader>
-  <resheader name="version">
-    <value>1.3</value>
-  </resheader>
-  <resheader name="reader">
-    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <resheader name="writer">
-    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>False</value>
-  </data>
-  <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>Private</value>
-  </data>
-  <data name="$this.TrayAutoArrange" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>True</value>
-  </data>
-</root>
Index: Keditor.Net/trunk/_samples/aspx/sample03.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample03.aspx	(revision 1163)
+++ 	(revision )
@@ -1,57 +1,0 @@
-<%@ Page language="c#" Codebehind="sample03.aspx.cs" AutoEventWireup="false" Inherits="FredCK.FCKeditorV2.Samples.sample03" %>
-<%@ Register TagPrefix="uc1" TagName="sample03" Src="sample03.ascx" %>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<%--
- * FCKeditor - The text editor for internet
- * Copyright (C) 2003-2005 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/
- * 
- * "Support Open Source software. What about a donation today?"
- * 
- * File Name: sample03.aspx
- * 	Sample page.
- * 
- * File Authors:
- * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
---%>
-<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">
-
-function FCKeditor_OnComplete( editorInstance )
-{
-	window.status = editorInstance.Description ;
-}
-
-		</script>
-	</head>
-	<body>
-		<h1>FCKeditor - ASP.Net - Sample 3</h1>
-		This sample displays a normal HTML form with an FCKeditor with full features 
-		enabled.
-		<br>
-		The only difference from sample02 is that this page uses a custom control that 
-		includes the editor in the back. This is a test page to see if the editor works 
-		over a control tree hierarchy.
-		<hr>
-		<form method="post" runat="server">
-			<uc1:sample03 id="MyCustomControl" runat="server"></uc1:sample03>
-			<br>
-			<input id="btnSubmit" type="submit" value="Submit" runat="server">
-		</form>
-		<div id="eSubmittedDataBlock" runat="server">
-			<hr>
-			This is the submitted data:<br>
-			<textarea id="txtSubmitted" runat="server" rows="10" cols="60" style="WIDTH: 100%" readonly></textarea>
-		</div>
-	</body>
-</html>
Index: Keditor.Net/trunk/_samples/aspx/sample03.aspx.cs
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample03.aspx.cs	(revision 1163)
+++ 	(revision )
@@ -1,62 +1,0 @@
-using System;
-using System.Collections;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Web;
-using System.Web.SessionState;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.HtmlControls;
-
-namespace FredCK.FCKeditorV2.Samples
-{
-	public class sample03 : System.Web.UI.Page
-	{
-		protected System.Web.UI.HtmlControls.HtmlInputButton btnSubmit;
-		protected System.Web.UI.HtmlControls.HtmlGenericControl eSubmittedDataBlock;
-		protected System.Web.UI.HtmlControls.HtmlTextArea txtSubmitted;
-
-		protected sample031 MyCustomControl ;
-	
-		private void Page_Load(object sender, System.EventArgs e)
-		{
-			// We'll do initializartion only the first time.
-			// Once the page is submitted, nothing must be done in the OnLoad.
-			if ( Page.IsPostBack )
-				return ;
-
-			eSubmittedDataBlock.Visible = false ;
-		}
-
-		#region Web Form Designer generated code
-		override protected void OnInit(EventArgs e)
-		{
-			//
-			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
-			//
-			InitializeComponent();
-			base.OnInit(e);
-
-			// This events declarations has been moved to the "OnInit" method
-			// to avoid a bug in Visual Studio to delete then without any advice.
-			this.Load += new System.EventHandler(this.Page_Load);
-			this.btnSubmit.ServerClick += new System.EventHandler(this.btnSubmit_ServerClick);
-		}
-		
-		/// <summary>
-		/// Required method for Designer support - do not modify
-		/// the contents of this method with the code editor.
-		/// </summary>
-		private void InitializeComponent()
-		{    
-		}
-		#endregion
-
-		private void btnSubmit_ServerClick(object sender, System.EventArgs e)
-		{
-			eSubmittedDataBlock.Visible = true ;
-			txtSubmitted.Value = HttpUtility.HtmlEncode( MyCustomControl.GetFCKeditorValue() ) ;
-		}
-	}
-}
Index: Keditor.Net/trunk/_samples/aspx/sample03.aspx.resx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sample03.aspx.resx	(revision 1163)
+++ 	(revision )
@@ -1,109 +1,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<root>
-  <!-- 
-    Microsoft ResX Schema 
-    
-    Version 1.3
-    
-    The primary goals of this format is to allow a simple XML format 
-    that is mostly human readable. The generation and parsing of the 
-    various data types are done through the TypeConverter classes 
-    associated with the data types.
-    
-    Example:
-    
-    ... ado.net/XML headers & schema ...
-    <resheader name="resmimetype">text/microsoft-resx</resheader>
-    <resheader name="version">1.3</resheader>
-    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
-    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
-    <data name="Name1">this is my long string</data>
-    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
-    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
-        [base64 mime encoded serialized .NET Framework object]
-    </data>
-    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
-        [base64 mime encoded string representing a byte array form of the .NET Framework object]
-    </data>
-                
-    There are any number of "resheader" rows that contain simple 
-    name/value pairs.
-    
-    Each data row contains a name, and value. The row also contains a 
-    type or mimetype. Type corresponds to a .NET class that support 
-    text/value conversion through the TypeConverter architecture. 
-    Classes that don't support this are serialized and stored with the 
-    mimetype set.
-    
-    The mimetype is used forserialized objects, and tells the 
-    ResXResourceReader how to depersist the object. This is currently not 
-    extensible. For a given mimetype the value must be set accordingly:
-    
-    Note - application/x-microsoft.net.object.binary.base64 is the format 
-    that the ResXResourceWriter will generate, however the reader can 
-    read any of the formats listed below.
-    
-    mimetype: application/x-microsoft.net.object.binary.base64
-    value   : The object must be serialized with 
-            : System.Serialization.Formatters.Binary.BinaryFormatter
-            : and then encoded with base64 encoding.
-    
-    mimetype: application/x-microsoft.net.object.soap.base64
-    value   : The object must be serialized with 
-            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
-            : and then encoded with base64 encoding.
-
-    mimetype: application/x-microsoft.net.object.bytearray.base64
-    value   : The object must be serialized into a byte array 
-            : using a System.ComponentModel.TypeConverter
-            : and then encoded with base64 encoding.
-    -->
-  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
-    <xsd:element name="root" msdata:IsDataSet="true">
-      <xsd:complexType>
-        <xsd:choice maxOccurs="unbounded">
-          <xsd:element name="data">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
-              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
-              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
-            </xsd:complexType>
-          </xsd:element>
-          <xsd:element name="resheader">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" use="required" />
-            </xsd:complexType>
-          </xsd:element>
-        </xsd:choice>
-      </xsd:complexType>
-    </xsd:element>
-  </xsd:schema>
-  <resheader name="resmimetype">
-    <value>text/microsoft-resx</value>
-  </resheader>
-  <resheader name="version">
-    <value>1.3</value>
-  </resheader>
-  <resheader name="reader">
-    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <resheader name="writer">
-    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <data name="$this.TrayAutoArrange" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>True</value>
-  </data>
-  <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>Private</value>
-  </data>
-  <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-    <value>False</value>
-  </data>
-</root>
Index: Keditor.Net/trunk/_samples/aspx/sampleposteddata.aspx
===================================================================
--- /FCKeditor.Net/trunk/_samples/aspx/sampleposteddata.aspx	(revision 1163)
+++ 	(revision )
@@ -1,45 +1,0 @@
-<%@ Page ValidateRequest="false" Language="C#" AutoEventWireup="false" %>
-<%--
- * FCKeditor - The text editor for internet
- * Copyright (C) 2003-2005 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/
- * 
- * "Support Open Source software. What about a donation today?"
- * 
- * File Name: sampleposteddata.aspx
- * 	This page lists the data posted by a form.
- * 
- * File Authors:
- * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
---%>
-<!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.
-		<hr>
-		<table width="100%" border="1" cellspacing="0" bordercolor="#999999">
-			<tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
-				<td noWrap>Field Name&nbsp;&nbsp;</td>
-				<td>Value</td>
-			</tr>
-			<% foreach ( string sForm in Request.Form ) { %>
-			<tr>
-				<td valign="top" nowrap><b><%=sForm%></b></td>
-				<td width="100%"><%=Server.HtmlEncode( Request.Form[sForm] )%></td>
-			</tr>
-			<% } %>
-		</table>
-	</body>
-</html>
