Hi, evaluating your cuteEditor for ASP.NET and trying to use an Access Database and writing code in VB, in the following code I'm getting the error "Name AccessFileStorage" is not declared. What am I missing here? do I need to build a provider for this or something ? any help appreciated. Paul
Protected
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Editor1.Setting(
"CuteEditorFileStorageType") = Type.GetType(AccessFileStorage).AssemblyQualifiedName
Editor1.Setting("AccessFile") = Server.MapPath("database.mdb")
Editor1.Setting(
"DownFile") = ResolveUrl("DownFile.Aspx")
Editor1.SetSecurityGalleryPath(
"/images/loaded/")
End Sub