摘要:
在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这样才可以 阅读全文
摘要:
Order By Rnd()或Order By NewID() ‘此句在sql2000中试好用或Select * From table Order By Rnd(ID)或SELECT * FROM table ORDER BY Rnd(ID-timer()) 阅读全文
摘要:
创建表及插入模拟数据: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 阅读全文
摘要:
/// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { //获取欲启动进程名 string strProcessName = System.Diagnostics.Process.GetCurrentProcess().ProcessName; ////获取版本号 //CommonData.VersionNumber = Application.ProductVersion; //检查进程是否已经启动,已经启动则显示报错信息退出程序。 if (System.Diagnost 阅读全文
摘要:
web与mysql数据库分离开来是一个不错的选择,避免因为大量的数据库查询占用CPU而使web资源不足, 同时可以使web服务器的资源尽最大的提供浏览服务,而数据库服务器单独的只处理数据库事物。A为web服务器(假设ip为:192.192.192.192) B为mysql数据服务器(假设ip为:16 阅读全文
摘要:
在$_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 != "") 阅读全文
摘要:
在模块目录下的ListView.php中// Advanced Search Form Processing (START)此句代码下面,加入$_REQUEST['advanced']="true";//只显示高级查询 阅读全文
摘要:
在此文件中\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 阅读全文
摘要:
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" ;;; 阅读全文
摘要:
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 阅读全文