摘要:开启全文索引配置全文索引:在系统>计划任务中新建计划任务如下,该任务每60s执行一次。打开数据库表cms_schedule,会发现表中多一条记录2.配置监视目录:其中目录指站点的内容,Url指搜索结果的链接。打开数据库表Cms_SearchSetting发现多了一条记录,其中的FolderUUID指的就是目录:NewOne.NewsDetail,而对应的Url也是一致的。3. 添加删除目录NewOne.NewsDetail下的内容,就会在表格cms_IndexTrigger产生相应的记录,但是没隔60s记录就会被系统job删掉。所以我们可以用如下命令打开cdc(变更数据捕获)来跟踪该表内
阅读全文
摘要:旧版的fckeditor是可以直接上传图片的,但是新版的ckeditor将上传功能拆分成另外一个组件ckfinder了,所以ckeditor默认设置是不可以上传文件,以及浏览服务器文件的,需要做一点简单的设置才可以。下面以ckeditor的sample FirstUse页面为例,讲解如何将ckfinder与ckeditor整合。首先将ckeditor的sample solution打开,然后将ckfinder的目录拷贝的sample网站的根目录下,并将CKFINDER.DLL拷贝到Sample网站的Bin目录下。然后打开FirstUse页面,在header标签中加上注意:因为该sample是网
阅读全文
摘要:Asp.net mvc 使用DataAnnotation标签来做验证。public partial class PatternMeta { public int id { get; set; } [Required] [DisplayName("名称")] public string name { get; set; } [Required] [DisplayName("编码")] public string code { get; set; } [Range(1,20)] ...
阅读全文
摘要:IIS7.5 + windows server 2008 部署了网站,该网站是一个cms,有读写文件的操作,部署好后在读写文件操作时,会有如下异常: 异常信息: 异常类型: System.UnauthorizedAccessException 异常消息: 对路径“C:\website\search.aspx”的访问被拒绝。根据此异常我判断是用户权限不够导致的此异常,于是将要读写文件的文件夹读写权限赋给Users,然后该异常就消失。
阅读全文
摘要:用于 Web 应用程序项目部署的 Web.config 转换语法.NET Framework 4 Web.config 文件通常包括根据应用程序的运行环境而必须不同的设置。例如,在部署 Web.config 文件时,您可能必须更改数据库连接字符串或禁用调试。对于 Web 应用程序项目,ASP.NET 提供了一些工具,用于自动完成在部署这些项目时更改(转换)Web.config 文件的过程。对于要部署到的每个环境,您将创建一个转换文件,该文件仅指定原始 Web.config 文件和适用于该环境的已部署 Web.config 文件之间的差异。 转换文件是一个 XML 文件,该文件指定在部署 Web
阅读全文
摘要:A low-level Look at the ASP.NET Architecture --asp.net 系统架构底层探秘Getting Low LevelThis article looks at how Web requests flow through the ASP.NET framework from a very low level perspective, from Web Server, through ISAPI all the way up the request handler and your code. See what happens behind the sc
阅读全文
摘要:reporting service 的配置:Reporting service 安装配置过程 1. 安装sql server 2008 enterprise edition,并安装reporting service 组件。 2. 配置reporting service 打开reporting service配置面板 配置相应属性(web服务url,报表管理器url) Reporting service 部署过程。 准备工作: 1. 安装sql server 2005/2008 reporting service。 2. 确保http://localhost:portno/reportserve
阅读全文
摘要:This post will explain how to get the value of a checkbox when a form is posted within the world of ASP.NET MVC. This post will explain this approach by first presenting a common problem and then showing you the recommended solution. You can just jump to the solution by clicking here.The Common Prob
阅读全文
摘要:讨论Web开发技术的历史,当然要先说说Web的起源。众所周知,Web这个Internet上最热门的应用架构是由Tim Berners-Lee发明的。Web的前身是1980年Tim Berners-Lee负责的Enquire(Enquire Within Upon Everything的简称)项目。1990年11月,第一个Web服务器nxoc01.cern.ch开始运行,Tim Berners-Le...
阅读全文
摘要:1.ASP.NET很灵活,这归功于它采用文本文件方式的配置方式. 另外的那种用页面标识符的方法应该是从ASP延续下来的. 写ASP+程序时候碰到中文显示问题,运行后发现ASP+从数据库中读出来的中文全部变成了?????,解决办法: 方法一: 在config.web中设置globalization段 <configuration> <globalization reques...
阅读全文
摘要:ASP.NET Request对象使用实例浅析http://developer.51cto.com 2009-07-29 15:55 天蓝蓝 百度空间 我要评论(0) ASP.NET Request对象使用的具体情况是什么呢?ASP.NET Request对象是如何获取数据的呢?那么本文就向你介绍ASP.NET Request对象的具体使用情况。ASP.NET Request对象功能是从客户端得到...
阅读全文
摘要:<tr> <td>登录名:<input id="Text1" type="text" name="loginName" /><asp:Label ID="Label1" runat="server" Text="用户名已经存在"></asp:Label> </td> </tr> <tr> <td&...
阅读全文
摘要:IntroductionIn this post I will explain the Difference between ASP.NET web service and programming WCF services like ASP.NET web services. It also discusses how we use the both technologies for develo...
阅读全文
摘要:最近做一个在线阅读的网站文本内容的全文搜索网站(aspnet+sqlserver),当时有两个方案:1. Sql server 2005 Full Text Search service。2. Lucene.Net。Sql server的全文搜索索引管理比较方便,sqlserver 会自己管理索引的更新工作,也支持并发查询,但是遗憾的是没有HitHighlight功能,而且中文分词也做的比较瞎。L...
阅读全文