06 2012 档案

摘要:网上不少这方面的资料,但大多过期了。对与目前以及以后的php 版本之前的安装方式已经无效。 1.新版本的PHP5.3通过以往老方法已经不能在IIS上安装了,现在给出在IIS上安装PHP5.3以后版本的教程。首先下载并安装IIS FastCGI,下载地址http://www.iis.net/1521/ItemPermalink.ashx选择 x86的,Or, downloadx86,下载下来名称为fcgisetup_1.5_rtw_x86.msi下载IIS下的PHP,下载地址http://windows.php.net/download/,(注意IIS下要选择VC9的版本)解压到所需目录,该.. 阅读全文
posted @ 2012-06-26 17:23 水草肃 阅读(236) 评论(0) 推荐(0)
摘要:using System;using System.Data;using System.Configuration;using System.Collections;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;public partial class Decimal : System.Web.UI.Pag 阅读全文
posted @ 2012-06-18 09:45 水草肃 阅读(372) 评论(0) 推荐(0)
摘要:/*1.查询SQLSERVER中的所有数据库*/use mastergoselect * from sysdatabases where dbid>4/*where条件用来去掉系统数据库*/go/*2.查询SQLSERVER中的所有数据库(存储过程)*/exec sp_helpdb/*3.查询指定数据库中的表*/use 数据库名goselect * from sysobjects where xtype='u'/*where条件用来去掉系统表*/go/*4.显示当前数据库所有表的详细信息*/use 数据库名goSELECT表名=case when a.colorder=1 阅读全文
posted @ 2012-06-11 01:26 水草肃 阅读(164) 评论(0) 推荐(0)
摘要:table 是个很不听话的家伙 你要做比较多的设置才能让他满足你的要求不想里面的列被撑大? 不想里面的文字超出单元格?具体的做法是 在表格上设置 table-layout:fixed 这个很重要 让单员格隐藏多出的文字overflow:hidden 还要注意的一点是 单员格 的宽度要以百分号的形式表示 还有就是 让指定单元格不会自动的换行nowrap<style>.tbl {table-layout:fixed}.td {overflow:hidden;}</style><table class=tbl border=1 width=80><tr> 阅读全文
posted @ 2012-06-01 17:07 水草肃 阅读(892) 评论(0) 推荐(0)