摘要:
ctr+k+f 自动对齐操作ctr+z 撤销,ctr+y反撤销ctr+j 智能提示ctr+m+m 快速隐藏或显示当前代码段ctr+m,o 全部折叠显示ctr+_ 回到上一个光标位置ctr+k+c 注释 ctr+k+u 取消注释 Ctrl+K,Ctrl+D格式化代码 阅读全文
摘要:
IF OBJECT_ID ('dbo.spSelectColValue_In_DB') IS NOT NULL DROP PROCEDURE dbo.spSelectColValue_In_DB gocreate proc spSelectColValue_In_DBASDECLARE @table... 阅读全文
摘要:
IF OBJECT_ID ('dbo.spDeleteRowDate_In_DB') IS NOT NULL DROP PROCEDURE dbo.spDeleteRowDate_In_DB gocreate proc spDeleteRowDate_In_DB( @compid... 阅读全文
摘要:
1、封装独立方法 // 执行DataTable中的查询返回新的DataTable /// </summary> /// <param name="dt">源数据DataTable</param> /// <param name="condition">查询条件</param> /// <return 阅读全文
摘要:
create proc [dbo].[sp1getPropertyCenterFee]@userid int,@areaid VARCHAR(100)='0'asdeclare @parknumber varchar(50)-------------------------------@parknu... 阅读全文
摘要:
问题:Response.redirect 用法asp 中 用response.redirect () 跳转到不同的页面是怎么写的,比如从index.asp跳到admin目录下的a.asp 还有从a跳回 index.asp怎么写的?解答:~/表示从根目录开始,./表示从当前目录开始.../表示当前目录... 阅读全文
摘要:
1、绑定Repeater 基础用法 2、简单判断用法 " + superman + "" : no%> 3、较复杂用法 &t=' + new Date().getTime... 阅读全文
摘要:
阅读全文
摘要:
2015-08-10止总结的常用方法类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Security.Cryptogra... 阅读全文
摘要:
一、创建存储过程if Exists(select name from sysobjects where NAME = 'sp1LoginUser' and type='P')drop procedure sp1LoginUserGOCREATE PROCEDURE [dbo].[sp1LoginUs... 阅读全文