Re: Any Solution For File name supported spaces ?

  •  03-07-2006, 12:00 PM

    Re: Any Solution For File name supported spaces ?

    Building your own Image Name Filter

    This section is for Advanced Developers. Knowledge of the Regular Expressions is a prerequisite.

    Cute Editor has taken steps into image file name management. A new and innovative capability is to allow advanced developers to build the Image File Name Filter. Once a filter being set, only images whose names comply to the filter, will be displayed in the image dialog and is also allowed to be uploaded to the server. The other images are just being "filtered out".

    To setup a filter, you need to be familiar with Regular Expression. Regular Expressions are advanced forms of wildcards and allow you to set fitlers precisely.

     

      

     

    Cute Editor defines the following image name filter by default:


    ^[a-zA-Z0-9\._-]+$


     But you can modify it to meet your own requirements using the following methods:

     

     

    1: Edit security policy file.


    The security policy file (default.config, admin.config and guest.config) can be found in the /CuteEditor/Configuration/Security folder. In security policy file you can find the filenamePattern element. By default, it contains the following value:


    <
    security name="filenamePattern">^[a-zA-Z0-9\._-]+$</security>
      

    You can modify the filenamePattern element to meet your own requirements.

    For example:

    <security name="filenamePattern">^[a-zA-Z0-9\._-]+$</security>

     

     

    2: Programmatically define the image name filter


    C# Example:

    Editor1.Setting["security:filenamePattern"]= "^[a-zA-Z0-9\._-]+$";


    VB Example:

    Editor1.Setting("security:filenamePattern")= "^[a-zA-Z0-9\._-]+$"

     

      


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread