FCKeditor.Net_2.6.4在C#怎么使用啊?包括写入数据库和从数据库读取。谢谢啦!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FCKeditor.Net_2.6.4在C#怎么使用啊?包括写入数据库和从数据库读取。谢谢啦!相关的知识,希望对你有一定的参考价值。

自己去百度吧,这样不好回答,步骤太多了。
Keditor.Net_2.6.4有使用方法,大概步骤如下:

1,下载FCK程序,在上传upload页面里加入 登陆的验证,防备非法用心的人上传,再编译一次。

2,把编译文件拷贝到你的网站的BIN目标下,然后在VS里添加对这个FCK DLL的引用。

3,配置FCK上传文件的路径,文件类型 ,语言,等基本设置

4,将FCK插入到相应的网页。

给FCK指派名称为ID="CONTENT"

以上是WEB的。

如果你要在C#应用软件中调用,FCK官网好像没用说吧。
但是桌面软件也能以WEB方式使用FCK。
另外可以调用用户的OFFICE了。

取值就是 内容=CONTENT.value
读取就是 CONTENT.vale=数据库内容
参考技术A '初始化excel工作环境
Dim exapp As Microsoft.Office.Interop.Excel.Application = New Microsoft.Office.Interop.Excel.Application '定义excel应用程序
Dim exbook As Microsoft.Office.Interop.Excel.Workbook '定义工作簿
Dim exsheet As Microsoft.Office.Interop.Excel.Worksheet '定义原始数据工作表
Try
'得到EXCEL表格
exapp.Visible = False '显示excel 程序
exbook = exapp.Workbooks.Open("f:\副本服务站库1.xls") '打开已在工作薄
exsheet = exbook.Sheets(1) '获得原始数据工作表第一页
'写入数据(按照单元格循环写入)
'具体写入数据样式
exsheet.Cells(1, 1).Value=xxxxx 'xxxxx为任意数据
'保存EXCEL表格
exbook.Save()
Catch ex As Exception
Response.Write(ex.Message)
'关闭EXCEL表格
exapp.Workbooks.Close()
End Try
'关闭EXCEL表格
exapp.Workbooks.Close()

这个是vb.NET的代码,语法可能不一样,但是方法调用应该一样的,
读取数据库数据按照你自己的来
然后就是把数据写入EXCEL文件
exsheet.Cells(1, 1).Value=xxxxx
这个是往A1单元格写入变量XXXX的值
具体的数据你自己写吧

尝试使用 C# asp.net web 表单使电子纸动态化

【中文标题】尝试使用 C# asp.net web 表单使电子纸动态化【英文标题】:Trying to make epaper dynamic using C# asp.net web form 【发布时间】:2019-09-08 05:15:16 【问题描述】:

我有静态电子纸,但我想开发如下网址的动态电子纸

https://epaper.dawn.com/?page=15_04_2019_001

我不知道开始e纸动态下面是我的整个html代码

   <!doctype html>
   <html>
   <head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  <title>q Times</title>

  <link rel="stylesheet" href="css/main.css">
  <link href="https://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
   <style>
  body  background-color: #fafafa; min-height: 100vh;
 .container  margin: 200px auto; max-width: 600px; 
  </style>

 <script src="jquery.min.js"></script>

 <script src="jquery.maphilight.min.js"></script>

 <script>

    $(document).ready(function () 
    $("#prev-img,").click(function () 
    //alert($('#show-img').attr('src'));
    var x=$('#show-img').attr('src');
    if(x=='images/1.jpg')
    
     document.getElementById("show-img").useMap="#enewspaper"

    
    else if(x=='images/2.jpg')
    
    document.getElementById("show-img").useMap="#enewspaper1"

               
   );



      )
     </script>


     <script>

     $(document).ready(function () 
     $("#next-img,").click(function () 
    //alert($('#show-img').attr('src'));
    var x=$('#show-img').attr('src');
    if(x=='images/1.jpg')
    
    document.getElementById("show-img").useMap="#enewspaper"

    
    else if(x=='images/2.jpg')
    
    document.getElementById("show-img").useMap="#enewspaper1"

       

    );



    )
      </script>
     <script type="text/javascript">
    $(function () 
        $(".map").maphilight()
        $(".icon-right,.icon-left,#small-img-roll img").click(
            function () 
                $("div.map img").css("opacity", 1);
                $(".map").maphilight()
                <!--var x = document.getElementById("1").useMap = "#enewspaper";  -->

                 var value = $(this).attr("usemap")

                   if(value==1)
                   

                 document.getElementById("show-img").useMap="#enewspaper"

                var x = document.getElementById("show-img").useMap;

                  $(".map").maphilight()
                   
                   else if(value==2)
                   

                  document.getElementById("show-img").useMap="#enewspaper1"
                    var x = document.getElementById("show-img").useMap;

                  $(".map").maphilight()
                   
                   


                    )

                   )


                </script>

                 </head>
                 <body>

                  <div class="container" style="margin-top:0px">


                 <!--<div class="show" href="images/1.png" usemap="#enewspaper">-->
                 <img src="images/1.jpg" id="show-img"  class="map" usemap="#enewspaper" >
                <map name="enewspaper">

               <area shape="rect"  title="" coords="34,136,562,221" href="" target="" />
               <area shape="rect"  title="" coords="372,229,574,468" href="www.google.com" target="" />
              <area shape="rect"  title="" coords="104,227,368,469" href="www.fb.com" target="_New" />
              <area shape="rect"  title="" coords="105,472,230,677" href="www.kk.com" target="" />
               </map>

               <map name="enewspaper1">
               <area shape="rect"  title="" coords="34,136,562,221" href="" target="" />

               </map>

              <div class="small-img">
              <img src="images/online_icon_right@2x.png" class="icon-left"  id="prev-img">
             <div class="small-container">
             <div id="small-img-roll">


            <img src="images/1.jpg" class="show-small-img"  usemap="1">
            <img src="images/2.jpg" class="show-small-img"  usemap="2">

           </div>
           </div>
           <img src="images/online_icon_right@2x.png" class="icon-right"  id="next-img">
          </div>

         </div>



            </div>
             <script src="scripts/zoom-image.js"></script>
           <script src="scripts/main.js"></script>


           </body>

我没有任何想法来实现动态,我必须采取中继器控制或网格视图控制来实现动态电子纸。如何处理 MAP 和图像重定向。

【问题讨论】:

只是建议使用实时代码 sn-p 这个问题会更好:***.blog/2014/09/16/… 【参考方案1】:

如果您仔细查看您想要的结果,您会发现它们只有一个图像,与 div 重叠。这些是手动定义的,这意味着对于每个定义了“目标”的图像,单击时,将打开一个仅包含该区域的新窗口。实现这一点相对简单。一个容器内的图像,在同一个容器内也是一堆带有position:relative的div。现在,如果您想要的是所有过程都自动完成,我建议您开始研究模式识别/机器学习。

【讨论】:

你的动态功能手段我必须使用模式识别/机器学习吗?是表示如何以及任何资源或参考来实现动态功能。 @Merak Marey static.googleusercontent.com/media/research.google.com/en//pubs/… 你能解释一下在你上面的答案中实现的一些示例代码吗? @Merak Marey C# asp.net 网络表单。 @金属马雷 C# asp.net 网络表单。 @金属马雷

以上是关于FCKeditor.Net_2.6.4在C#怎么使用啊?包括写入数据库和从数据库读取。谢谢啦!的主要内容,如果未能解决你的问题,请参考以下文章

C#编写的winform程序使用mono脱离.net框架,调用open方法访问access使程序界面消失

FCKeditor文本编辑器的使用方法

最新版的fckeditor2.4在php环境下的设置

有一堆数,怎么在这堆数种找出几个数使他们的和为N

在C#中怎么使数组是个可变的,数组大小由用户自己输入

点击TextBox.怎么使Panel显示和隐藏呢? C#