上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 68 下一页
摘要: 在VS.NET 2008 中新建页时会有<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">这个标准,但对于IE 6 不支持这个标准,故在使用iframe是右边会有空白。将此句去掉并且需要把ifram所在的页面的body设置为overfolw:auto还要把iframe里面要显示的页面也设置为overfolw:auto这样才可以 阅读全文
posted @ 2011-05-04 14:00 海乐学习 阅读(817) 评论(0) 推荐(0) 编辑
摘要: Order By Rnd()或Order By NewID() ‘此句在sql2000中试好用或Select * From table Order By Rnd(ID)或SELECT * FROM table ORDER BY Rnd(ID-timer()) 阅读全文
posted @ 2011-04-18 15:11 海乐学习 阅读(6726) 评论(0) 推荐(0) 编辑
摘要: 创建表及插入模拟数据:CREATE TABLE [sysMenuTree]([NoteId] [decimal](18, 0) NOT NULL,[ParentId] [decimal](18, 0) NULL,[sText] [nvarchar](50) NULL,[sValue] [nvarchar](50) NULL,[sURL] [nvarchar](50) NULL,[sTarget] [nvarchar](50) NULL,[Chger] [nvarchar](50) NULL,[ChgTime] [nvarchar](50) NULL)insert into sysMenuTre 阅读全文
posted @ 2011-04-14 22:49 海乐学习 阅读(11575) 评论(3) 推荐(2) 编辑
摘要: /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { //获取欲启动进程名 string strProcessName = System.Diagnostics.Process.GetCurrentProcess().ProcessName; ////获取版本号 //CommonData.VersionNumber = Application.ProductVersion; //检查进程是否已经启动,已经启动则显示报错信息退出程序。 if (System.Diagnost 阅读全文
posted @ 2011-04-03 22:04 海乐学习 阅读(12936) 评论(0) 推荐(0) 编辑
摘要: web与mysql数据库分离开来是一个不错的选择,避免因为大量的数据库查询占用CPU而使web资源不足, 同时可以使web服务器的资源尽最大的提供浏览服务,而数据库服务器单独的只处理数据库事物。A为web服务器(假设ip为:192.192.192.192) B为mysql数据服务器(假设ip为:16 阅读全文
posted @ 2011-04-02 14:31 海乐学习 阅读(2707) 评论(0) 推荐(0) 编辑
摘要: 在$_REQUEST['where'] = $where;$storeQuery->process_views($currentModule);上面加入以下代码,下面的代码指默认为查询本月if($where==''){$date_period ='thismonth';$date_from = get_date_from($date_period);$date_to = get_date_to($date_period);if(isset($date_from) && $date_from != "") 阅读全文
posted @ 2011-03-29 13:19 海乐学习 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 在模块目录下的ListView.php中// Advanced Search Form Processing (START)此句代码下面,加入$_REQUEST['advanced']="true";//只显示高级查询 阅读全文
posted @ 2011-03-29 11:19 海乐学习 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 在此文件中\include\ListView\ListView.php将$export_link ="<a target=\"_blank\" href=\"export.php?module=".$export_module."\" class=\"listViewPaginationLinkS1\">".get_image($image_path."export","alt='".$this->local_app_string 阅读全文
posted @ 2011-03-29 11:09 海乐学习 阅读(294) 评论(0) 推荐(0) 编辑
摘要: Xdebug 使用说明先说下配置方法:1 下载xdebug http://www.xdebug.org 下载wincachegrind: http://sourceforge.net/projects/wincachegrind/ wincachegridd:为xdebug输出文件分析工具2 把xdebug copy到php扩展文件目录:d:/wamp/bin/php/php5.2.5/ext/编辑php.ini ,在其中添加如下配置行:Php代码 zend_extension_ts="d:/wamp/bin/php/php5.2.5/ext/xdebug.dll" ;;; 阅读全文
posted @ 2011-03-29 10:26 海乐学习 阅读(2068) 评论(0) 推荐(0) 编辑
摘要: 1.Get请求string strURL = "http://localhost/WinformSubmit.php?tel=11111&name=张三";System.Net.HttpWebRequest request;// 创建一个HTTP请求request = (System.Net.HttpWebRequest)WebRequest.Create(strURL);//request.Method="get";System.Net.HttpWebResponse response;response = (System.Net.HttpWe 阅读全文
posted @ 2011-03-04 14:56 海乐学习 阅读(30946) 评论(1) 推荐(1) 编辑
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 68 下一页