- 浏览: 36237 次
- 性别:
- 来自: 上海
最新评论
文章列表
if exists (select * from dbo.sysobjects
where id = object_id(N'[dbo].[p_splitpage]')
and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[p_splitpage]
GO
create procedure p_splitpage
@sql nvarchar(4000), --要执行的sql语句
...
记录一点div css方面的知识
<div>
<h1>
删除线测试</h1>
<div style="text-decoration: line-through">
123456</div>
<h1>
Font Title Test</h1>
<br />
<font style="background-color: #ffcc00; color: #ffffcc; font-style: normal; font-family: 'Micr ...
sql 2005+中的分页实现
Declare @rowsPerPage int
Declare @pageNum int
SET @rowsPerPage = 10
SET @pageNum = 1
With SQLPaging As (
Select Top(@rowsPerPage * @pageNum) ROW_NUMBER() OVER (ORDER BY ORDERID) as resultNum, ORDERID,OPERATOR,REASON FROM Ord_ProcessLog
)
select * from SQLPaging where resu ...
C#遍历指定文件夹中的所有文件
DirectoryInfo TheFolder=new DirectoryInfo(folderFullName);
//遍历文件夹
foreach(DirectoryInfo NextFolder in TheFolder.GetDirectories())
this.listBox1.Items.Add(NextFolder.Name);
//遍历文件
foreach(FileInfo NextFile in TheFolder.GetFiles())
...
有时候要使用vbs做一些小的工具,在此记录一些用到的技巧。
1、计算日期
Dim Zero,LastMonday,LastSunday,LastMonth1,LastMonth2,msg
Zero="1900-01-01 00:00:00"
LastMonth1=DateAdd("m", DateDiff("m", Zero,Now)-1, Zero)
LastMonth2=DateAdd("d",-1,DateAdd("m", DateDiff("m",Zero,N ...
dropdownlist总是选择第一项
- 博客分类:
- asp.net
最近在开发中遇到个诡异的问题,就是dropdownlist无论怎么选择最后回发的都是第一项,查了半天最后发现时数据的问题:
有两项是:
value:CC1 text:HR
value:CC2 text:HR
由于有重复的项,所以才导致的这个问题。
哎。。。
刚才重新测试发现不管是value还是text都不能有重复的,否则后果是一样的。
C#常用正则表达式
"^\d+$" //非负整数(正整数 + 0)
"^[0-9]*[1-9][0-9]*$" //正整数
"^((-\d+)|(0+))$" //非正整数(负整数 + 0)
"^-[0-9]*[1-9][0-9]*$" //负整数
"^-?\d+$" //整数 ...
在更新sdk时报出:folder failed to be renamed or moved...
google了一番使用下面的方法解决了:
1、复制tools为tools-copy
2、执行tools-copy中的android.bat
3、关闭 sdk
4、运行SDK Manager.exe
一、CSS HACK
以下两种方法几乎能解决现今所有HACK.
1, !important
随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.)
<style>
#wrapper
{
width: 100px!important; /* IE7+FF */
width: 80px; /* IE6 */
}
</style>
2, IE6/IE7对FireFox
*+html 与 *html 是IE特有的标签, firefox 暂不支持.而*+html 又为 IE7特 ...
B/S架构下的信息提示很难做到在任务栏右下角像qq一样的图标闪动或者右下角的悬浮提示,但可以做到对话框与任务栏的提示
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title& ...
在有信息提示时需要在网页标题中滚动,下边是JS实现的,以备以后使用
<html>
<head>
<title></title>
<script type="text/javascript">
var msg = "您有1条新消息";
var delay = 200;
var timeID;
function scrollTitle(flag) {
if (!flag) {
window.document. ...
刚刚接触oracle,不免要经历很多挫折,今天将这点挫折记录下来以备以后翻阅。
1、安装
我安装的是10g版本,服务器是:win2003.
参考:http://www.jb51.net/article/18038.htm
开始只是安装了程序,没有安装数据库,按照里面的介绍安装了一个数据库demo.
2、isqlplus
oracle10g提供了web方式的isqlplus,但是需要配置用户。
webDba的配置
1.命令提示符模式下输入 “isqlplusctl start” 启动isqlplus服务
2.c:\>cd %ORACLE_HOME%\oc4j\j2ee\isqlplus ...
Asp.net的membership提供了一种存储,验证和管理用户信息以及权限的统一的路径。membership所对应的验证方式是asp.net的Forms身份验证(注:asp.net的身份验证方式 有好几种包括windows身份验证 Forms身份验证 Passport身份认证当然还有就是没有验证)。在vs2005中 还给membership提供了一系列的控件(login控件),能方便的在asp.net实现membership。
具体来说membership能实现:
1. 创建用户
2. 可以保存membership信息在sql server,Active Dire ...