求C# 的ubb在线编辑器 急急急

解决方案 »

  1.   

    #region 属性设置
      //-----------------------------------------------------------------
      //设置或获取最大文件数
      //-----------------------------------------------------------------
      public string FileMaxCount
      {
       get{return File_Max_Count.Value;}
       set{File_Max_Count.Value = value;}
      }
      //-----------------------------------------------------------------
      //设置或获取是否显示文件选择框
      //-----------------------------------------------------------------
      public bool FileVisible
      {
       get{return FileArea.Visible;}
       set{FileArea.Visible = value;}
      }
      //-----------------------------------------------------------------
      //设置或获取是否显示已经上传的文件
      //-----------------------------------------------------------------
      public bool FileNameVisible
      {
       get{return DelFileNameArea.Visible;}
       set{DelFileNameArea.Visible = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置TextBox的值
      //-----------------------------------------------------------------
      public string TextBoxValue
      {
       get{return TextBox.Value;}
       set{TextBox.Value = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置上传文件名的值
      //-----------------------------------------------------------------
      public string FileName
      {
       get{return File_Name.Value;}
       set{File_Name.Value = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置文件保存的地址
      //-----------------------------------------------------------------
      public string FilePath
      {
       get{return _FilePath;}
       set{_FilePath = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置单个文件允许的大小
      //-----------------------------------------------------------------
      public uint FileSize
      {
       get{return _FileSize;}
       set{_FileSize = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置能上传的文件总大小
      //-----------------------------------------------------------------
      public uint FileMaxSize
      {
       get{return _FileMaxSize;}
       set{_FileMaxSize = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置TextBox中能最多能输入的字符个数
      //-----------------------------------------------------------------
      public uint TextBoxMaxLength
      {
       get{return _TextBoxMaxLength;}
       set{_TextBoxMaxLength = value;}
      }
      //-----------------------------------------------------------------
      //获取或设置要显示的文件选择框
      //-----------------------------------------------------------------
      public string FileCount
      {
       get{return File_Count.Value;}
       set{File_Count.Value = value;}
      }
      #endregion
      

  2.   

    是asp.net的在线编辑器,可以实现在线编辑,贴图片,视频,动画等.