Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 3870)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 3871)
@@ -51,4 +51,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2821">#2821</a>] Configuration
 			items that used floating point numbers were parsed as integers.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2604">#2064</a>] The asp 
+			connector didn't work correctly in windows 2000 servers.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3429">#3429</a>] Fixed
 			problem in IE8 with XHTML doctype. Thanks to duncansimey.</li>
Index: /FCKeditor/trunk/editor/filemanager/connectors/asp/basexml.asp
===================================================================
--- /FCKeditor/trunk/editor/filemanager/connectors/asp/basexml.asp	(revision 3870)
+++ /FCKeditor/trunk/editor/filemanager/connectors/asp/basexml.asp	(revision 3871)
@@ -31,5 +31,9 @@
 
 	' Set the response format.
+	on error resume next
+	' The CodePage property isn't supported in Windows 2000. #2604
 	Response.CodePage 		= 65001
+	on error goto 0
+
 	Response.CharSet		= "UTF-8"
 	Response.ContentType	= "text/xml"
