Index: /FCKeditor.Net/trunk/FCKeditor.cs
===================================================================
--- /FCKeditor.Net/trunk/FCKeditor.cs	(revision 1164)
+++ /FCKeditor.Net/trunk/FCKeditor.cs	(revision 1165)
@@ -321,4 +321,12 @@
 		#region Rendering
 
+		public string CreateHtml()
+		{
+			System.IO.StringWriter strWriter = new System.IO.StringWriter() ;
+			System.Web.UI.HtmlTextWriter writer = new HtmlTextWriter( strWriter );
+			this.Render( writer );
+			return strWriter.ToString();
+		}
+
 		protected override void Render(HtmlTextWriter writer)
 		{
@@ -332,5 +340,5 @@
 
 				string sFile = 
-					Page.Request.QueryString["fcksource"] == "true" ? 
+					System.Web.HttpContext.Current.Request.QueryString["fcksource"] == "true" ? 
 						"fckeditor.original.html" : 
 						"fckeditor.html" ;
@@ -379,5 +387,5 @@
 		public bool CheckBrowserCompatibility()
 		{
-			return IsCompatibleBrowser( Page.Request );
+			return IsCompatibleBrowser();
 		}
 
Index: /FCKeditor.Net/trunk/_whatsnew.html
===================================================================
--- /FCKeditor.Net/trunk/_whatsnew.html	(revision 1164)
+++ /FCKeditor.Net/trunk/_whatsnew.html	(revision 1165)
@@ -42,10 +42,14 @@
 	<ul>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1548">#1548</a>] Compatible with <strong>Safari 3.0+</strong> and <strong>Opera 9.50+</strong>.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/79">#79</a>] Introduced the <strong>FCKeditor.IsCompatibleBrowser</strong> static function, to
-			check if the requesting browser is compatible with FCKeditor.</li>
 		<li>Added specific project files for <strong>Visual Studio .NET 2003</strong> and <strong>
 			Visual Studio 2005</strong>. It's easier now to open the source in your preferred environment. Builds will
 			end up in the "1.1" (VS2003) and "2.0" (VS2005) folders inside bin/Debug and bin/Release. </li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/79">#79</a>] The BasePath property now defaults to "/fckeditor/" ("/FCKeditor/" previously).</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/79">#79</a>] Introduced the <strong>FCKeditor.IsCompatibleBrowser</strong> static function, to
+			check if the requesting browser is compatible with FCKeditor.
+		</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/79">#79</a>] Introduced
+			the <strong>FCKeditor.CreateHtml</strong> function, which returns the HTML needed
+			to create an editor instance in the page.</li>
 	</ul>
 	<p>
