上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 55 下一页

2013年6月24日

XML Helper XML操作类

摘要: 写的一个XML操作类,包括读取/插入/修改/删除。using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Xml;namespace PuTianCheng{ /// ///. 阅读全文

posted @ 2013-06-24 16:11 HOT SUMMER 阅读(460) 评论(0) 推荐(0) 编辑

2013年6月9日

C# GIZP解码

摘要: /// <summary> /// GZip解压函数 /// </summary> /// <param name="data"></param> /// <returns></returns> public byte[] GZipDecompress(byte[] data) { using (MemoryStream stream = new MemoryStream()) { using (GZipStream gZipStream... 阅读全文

posted @ 2013-06-09 10:20 HOT SUMMER 阅读(1107) 评论(0) 推荐(0) 编辑

2013年6月3日

PHPCMS V9二次开发:内容模块PC标签调用详解

摘要: 模块名:content模块提供的可用操作操作名 说明lists 内容数据列表relation 内容相关文章hits 内容数据点击排行榜category 内容栏目...模块名:content模块提供的可用操作操作名 说明lists 内容数据列表relation 内容相关文章hits 内容数据点击排行榜category 内容栏目列表position 内容推荐位列表position操作说明如下:--------------------------------------------------------------------------------内容推荐位列表(position):可用参数:参 阅读全文

posted @ 2013-06-03 14:48 HOT SUMMER 阅读(753) 评论(0) 推荐(0) 编辑

phpcms v9二次开发及使用中各种问题解决方案(一)

摘要: phpcms v9二次开发及使用中各种问题解决方案(一)2013-04-01 17:48:08来源:评论:0点击:phpcms v9二次开发及使用中各种问题解决方案(一)模板调用1、内容标签,序号123456789的调用?{pc:contentaction="lists"catid="$catid"ord...phpcms v9二次开发及使用中各种问题解决方案(一)模板调用1、内容标签,序号123456789的调用?{pc:contentaction="lists"catid="$catid"order=" 阅读全文

posted @ 2013-06-03 14:47 HOT SUMMER 阅读(5981) 评论(0) 推荐(0) 编辑

PHPCMS v9里面,推荐位ID【posid】的值是如何确定的?是自定义的还是官方定义好的?

摘要: 例如:{pc:content action="position" posid="2" order="listorder DESC" num="4"}后台-推荐位管理(左边栏最下方),里面可以自定义ID下面为默认的:在V9的后台添加文章页面中的源代码中得知推荐位有5种类型:1 首页焦点图推荐2 首页头条推荐9 网站顶部推荐10 栏目首页推荐12 首页图片推荐不过我们可以在后台自己添加推荐位。具体在 “当前位置:内容 > 内容相关设置 > 推荐位管理 >” 添加推荐位。。这样我们就可以新建跟DEDEC 阅读全文

posted @ 2013-06-03 11:43 HOT SUMMER 阅读(1583) 评论(0) 推荐(0) 编辑

2013年5月30日

貌似是多进程通信

摘要: http://www.fengfly.com/plus/view-172365-1.html 阅读全文

posted @ 2013-05-30 10:45 HOT SUMMER 阅读(148) 评论(0) 推荐(0) 编辑

Asp版判断来路,实现自动跳转

摘要: Asp版程序代码<%if instr(Request.ServerVariables(”http_referer”),”baidu.com”)>0 thenresponse.redirect(”http://www.epofcn.com”)end if%>Js版程序代码<script>function t(){ //调试用alert(document.referrer) if (document.referrer&&document.referrer.indexOf(’baidu.com’)>=0){ if(parent.window.ope 阅读全文

posted @ 2013-05-30 09:30 HOT SUMMER 阅读(1717) 评论(0) 推荐(0) 编辑

一段判断搜索引擎来路的JS代码

摘要: 以下是一段php判断搜索引擎的代码<?PHP$referer = $_SERVER['HTTP_REFERER'];if(!$referer == ''){if(ereg('http',$referer)){$referer = @eXPlode('.',$referer);if(is_array($referer)){$referer = $referer['1'];if($referer == 'google' OR $referer == 'baidu' OR $refe 阅读全文

posted @ 2013-05-30 09:29 HOT SUMMER 阅读(4471) 评论(0) 推荐(0) 编辑

JS判断来路

摘要: <script language="javascript" type="text/javascript">function loadFN(){hrefValue = window.location.href; //获取当前页面的地址//alert(hrefValue);alertUrls = ['gz.unkeji.com']; //指定你想要alert的域名,多个可以在数组中直接追加即可//追加如:['www.hugesky.com', 'hugesky.com', 'abc.huge 阅读全文

posted @ 2013-05-30 00:21 HOT SUMMER 阅读(515) 评论(0) 推荐(0) 编辑

JS改变网页标题,JS判断访问域名

摘要: <script language="javascript" type="text/javascript">function loadFN(){hrefValue = window.location.href; //获取当前页面的地址//alert(hrefValue);alertUrls = ['gz.unkeji.com']; //指定你想要alert的域名,多个可以在数组中直接追加即可//追加如:['www.hugesky.com', 'hugesky.com', 'abc.huge 阅读全文

posted @ 2013-05-30 00:13 HOT SUMMER 阅读(547) 评论(0) 推荐(0) 编辑

上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 55 下一页

导航