Index: FCKeditor/trunk/_samples/asp/sample03.asp
===================================================================
--- FCKeditor/trunk/_samples/asp/sample03.asp	(revision 2913)
+++ FCKeditor/trunk/_samples/asp/sample03.asp	(revision 3815)
@@ -75,4 +75,10 @@
 sBasePath = Left( sBasePath, InStrRev( sBasePath, "/_samples" ) )
 
+'This RegExp is used to sanitize recived toolbar parameter
+Dim oRegex
+Set oRegex = New RegExp
+oRegex.Global		= True
+oRegex.Pattern = "[^a-zA-Z]"
+
 Dim oFCKeditor
 Set oFCKeditor = New FCKeditor
@@ -80,5 +86,5 @@
 
 If Request.QueryString("Toolbar") <> "" Then
-	oFCKeditor.ToolbarSet = Server.HTMLEncode( Request.QueryString("Toolbar") )
+	oFCKeditor.ToolbarSet = oRegex.Replace( Request.QueryString("Toolbar"), "" )
 End If
 
