Index: /CKEditor.NET/trunk/_Samples/FirstUse.aspx
===================================================================
--- /CKEditor.NET/trunk/_Samples/FirstUse.aspx	(revision 7505)
+++ /CKEditor.NET/trunk/_Samples/FirstUse.aspx	(revision 7506)
@@ -33,9 +33,9 @@
 		To insert the CKEditor for ASP.NET Control into a web page, use the following code:
 	</p>
-	<pre class="samples"><span style="color: #0000ff">&lt;</span><span style="color: #a52a2a">CKEditor</span><span style="color: #0000ff">:</span><span style="color: #a52a2a">CKEditorControl </span><span style="color: #ff0000">ID</span><span style="color: #0000ff">=&quot;CKEditor1&quot; </span><span style="color: #ff0000">runat</span><span style="color: #0000ff">=&quot;server&quot;&gt;&lt;/</span><span style="color: #a52a2a">CKEditor</span><span style="color: #0000ff">:</span><span style="color: #a52a2a">CKEditorControl</span><span style="color: #0000ff">&gt;</span></pre>
+	<pre class="samples"><span style="color: #0000ff">&lt;</span><span style="color: #a52a2a">CKEditor</span><span style="color: #0000ff">:</span><span style="color: #a52a2a">CKEditorControl </span><span style="color: #ff0000">ID</span><span style="color: #0000ff">=&quot;CKEditor1&quot; </span><span style="color: #ff0000">BasePath</span><span style="color: #0000ff">=&quot;~/ckeditor&quot; </span><span style="color: #ff0000">runat</span><span style="color: #0000ff">=&quot;server&quot;&gt;&lt;/</span><span style="color: #a52a2a">CKEditor</span><span style="color: #0000ff">:</span><span style="color: #a52a2a">CKEditorControl</span><span style="color: #0000ff">&gt;</span></pre>
 	<p>The CKEditor instance below was inserted using the second method.</p>
 	</div>
 	<div>
-		<CKEditor:CKEditorControl ID="CKEditor1" runat="server" Height="200">
+		<CKEditor:CKEditorControl ID="CKEditor1" runat="server" Height="200" BasePath="~/ckeditor">
 		&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;
 		</CKEditor:CKEditorControl>
Index: /CKEditor.NET/trunk/_Samples/SampleConfig.aspx
===================================================================
--- /CKEditor.NET/trunk/_Samples/SampleConfig.aspx	(revision 7505)
+++ /CKEditor.NET/trunk/_Samples/SampleConfig.aspx	(revision 7506)
@@ -30,5 +30,5 @@
 			<code>.aspx</code> page in the following way:
 		</p>
-<pre class="samples"><span style="color: #0000ff">&lt;</span><span style="color: #a52a2a">CKEditor</span><span style="color: #0000ff">:<span style="color: #a52a2a">CKEditorControl </span></span><span style="color: #ff0000">ID</span><span style="color: #0000ff">=&quot;CKEditor1&quot; </span><span style="color: #ff0000">runat</span><span style="color: #0000ff">=&quot;server&quot; </span><span style="color: #ff0000">UIColor</span><span style="color: #0000ff">=&quot;#BFEE62&quot; </span><span style="color: #ff0000">Language</span><span style="color: #0000ff">=&quot;de&quot; </span><span style="color: #ff0000">EnterMode</span><span style="color: #0000ff">=&quot;BR&quot;&gt;</span>
+<pre class="samples"><span style="color: #0000ff">&lt;</span><span style="color: #a52a2a">CKEditor</span><span style="color: #0000ff">:<span style="color: #a52a2a">CKEditorControl </span></span><span style="color: #ff0000">ID</span><span style="color: #0000ff">=&quot;CKEditor1&quot; </span><span style="color: #ff0000">BasePath</span><span style="color: #0000ff">=&quot;~/ckeditor&quot; </span><span style="color: #ff0000">runat</span><span style="color: #0000ff">=&quot;server&quot; </span><span style="color: #ff0000">UIColor</span><span style="color: #0000ff">=&quot;#BFEE62&quot; </span><span style="color: #ff0000">Language</span><span style="color: #0000ff">=&quot;de&quot; </span><span style="color: #ff0000">EnterMode</span><span style="color: #0000ff">=&quot;BR&quot;&gt;</span>
 <span style="color: #0000ff">&lt;<span>/</span><span style="color: #a52a2a">CKEditor</span>:<span style="color: #a52a2a">CKEditorControl</span>&gt;</span></pre>
 		<p>
@@ -41,6 +41,5 @@
 </pre>
 	</div>
-	<CKEditor:CKEditorControl ID="CKEditor1" runat="server" UIColor="#BFEE62" Language="de" EnterMode="BR">
-	</CKEditor:CKEditorControl>
+	<CKEditor:CKEditorControl ID="CKEditor1" BasePath="~/ckeditor" runat="server" UIColor="#BFEE62" Language="de" EnterMode="BR"></CKEditor:CKEditorControl>
 	<div id="footer">
 		<hr />
Index: /CKEditor.NET/trunk/_Samples/SubmitData.aspx
===================================================================
--- /CKEditor.NET/trunk/_Samples/SubmitData.aspx	(revision 7505)
+++ /CKEditor.NET/trunk/_Samples/SubmitData.aspx	(revision 7506)
@@ -34,5 +34,5 @@
 	</div>
 	<div>
-		<CKEditor:CKEditorControl ID="CKEditor1" runat="server" Height="200">
+		<CKEditor:CKEditorControl ID="CKEditor1" BasePath="~/ckeditor" runat="server" Height="200">
 &lt;p&gt;
 	This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</CKEditor:CKEditorControl>
Index: /CKEditor.NET/trunk/_Samples/ToolbarDefine.aspx
===================================================================
--- /CKEditor.NET/trunk/_Samples/ToolbarDefine.aspx	(revision 7505)
+++ /CKEditor.NET/trunk/_Samples/ToolbarDefine.aspx	(revision 7506)
@@ -95,5 +95,5 @@
 	</p>
 <pre class="samples">CKEditor3.config.toolbar =<span style="color: #a52a2a"> &quot;Basic&quot;</span>;</pre>
-	<CKEditor:CKEditorControl ID="CKEditor3" runat="server">
+	<CKEditor:CKEditorControl ID="CKEditor3" runat="server" BasePath="~/ckeditor">
 	&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;
 	</CKEditor:CKEditorControl>
