- 博客(44)
- 收藏
- 关注
原创 SqlServer数据库性能优化详解
数据库性能优化详解 性能调节的目的是通过将网络流通、磁盘 I/O 和 CPU 时间减到最小,使每个查询的响应时间最短并最大限度地提高整个数据库服务器的吞吐量。为达到此目的,需要了解应用程序的需求和数据的逻辑和物理结构,并在相互冲突的数据库使用之间(如联机事务处理 (OLTP) 与决策支持)权衡。对性能问题的考虑应贯穿于开发阶段的全过程,不应只在最后实现系统时才考虑性能问题。
2007-08-29 12:55:00 19310 3
原创 C#调用系统API函数实例
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace ConsoleApplication4{ class Program { //API函数的声明如下: [DllImport("kern
2009-02-20 17:06:00 1355 1
转载 clientHeight / scrollHeight / offsetHeight 等属性的区别图
clientHeight / scrollHeight / offsetHeight 等属性的区别图:
2009-02-13 15:43:00 403
原创 存储过程相关实用Sql
sp_helptext 存储过程 --查看存储过程文本(只适合查看存储过程文本)sp_depends 表 --查看依赖该表的所有存储过程和触发器等(适合表,存储过程,视图,触发器)sp_depends 存储过程 --查看存储过程依赖的表列或其他数据库对象sp_help 表 --查看该表所有信息,包括所有列
2009-02-12 16:12:00 424
转载 必须掌握的八个dos 命令
一,ping 它是用来检查网络是否通畅或者网络连接速度的命令。作为一个生活在网络上的管理员或者黑客来说,ping命令是第一个必须掌握的DOS命令,它所利用的原理是这样的:网络上的机器都有唯一确定的IP地址,我们给目标IP地址发送一个数据包,对方就要返回一个同样大小的数据包,根据返回的数据包我们可以确定目标主机的存在,可以初步判断目标主机的操作系统等。下面就来看看它的一些常用的操作。先看
2009-02-10 13:32:00 313
转载 sqlserver常用函数
1:replace 函数第一个参数你的字符串,第二个参数你想替换的部分,第三个参数你要替换成什么select replace(lihan,a,b) -----------------------------lihbn(所影响的行数为 1 行)=======
2009-02-10 13:24:00 609
转载 AjaxPro在.NET中的应用
一、简介 Ajax(Asynchronous JavaScript + XML)应用可以仅向服务器发送并取回必需的数据,它使用SOAP或其它一些基于XML的web service接口,并在客户端采用JavaScript处理来自服务器的响应。因为在服务器和浏览器之间交换的数据大量减少,结果我们就能看到响应更快的应用。同时很多的处理工作可以在发出请求的客户端机器上完成,所以Web服务器的处理时
2009-02-10 12:31:00 317
原创 配置本地的https服务
配置本地的https服务,最简单的步骤如下:1、 下载IIS资源工具包(IIS 6.0 Resource Kit Tools),地址为:http://www.microsoft.com/downloads/details.aspx?FamilyID=56fc92ee-a71a-4c73-b628-ade629c89499&DisplayLang=en2、安装IIS资源工具包3、通过开始菜单的
2009-02-10 11:56:00 618
原创 查看SQL SERVER的statistics I/O状态
--查看SQL SERVER的statistics I/O状态SET STATISTICS IO onselect pkid from et_order where pkidset statistics io off表 ET_Order。扫描计数 1,逻辑读取 168 次,物理读取 0 次,预读 0 次,lob 逻辑读取 0 次,lob 物理读取 0 次,lob 预读 0 次。表
2009-02-10 11:52:00 981 1
原创 查询触发器Sql
select sp.name as 数据对象名称,case sp.type when P then 存储过程 when FN then 函数 when TR then 触发器 else 其他 end as 数据对象类型,isnull(smsp.definition, ssmsp.definition) as [definition]fromsys.all_o
2009-02-10 11:52:00 1094
原创 SqlServer中的多种分页方法
/*以下包含SqlServer中的多种分页方法*/--1.利用ROW_NUMBER() OVER(order by 字段名) 分页方式select * from(select ROW_NUMBER() OVER (ORDER BY pkid) AS RowNumberpkid,*from et_order )as myResultswhere RowNumberpkid between 1
2009-02-10 11:51:00 337
原创 面试题归纳
经典的.net面试题目1, 请你说说.NET中类和结构的区别? 答:结构和类具有大体的语法,但是结构受到的限制比类要多。结构不能申明有默认的构造函数,为结构的副本是又编译器创建和销毁的,所以不需要默认的构造函数和析构函数。结构是值类型,所以对结构变量所做的改变不会影响其的原值,而类是应用类型,改变其变量的值会改变其原值。申明结构用Struck关键字,申明类用class关键字,向方法传递结构
2009-02-10 11:48:00 470
原创 ajax浏览器兼容
http://bolm.cn/tutorial/ajax_xmlhttp/ajax_index.htmlhttp://www.ad0.cn/netfetch/go.php/category/25/http://www.ad0.cn/netfetch/go.php/category/16/http://www.ad0.cn/netfetch/read.php/976.htm//方便functi
2009-02-10 11:47:00 335
转载 Ajax编码和Ajax乱码解决
Ajax编码和Ajax乱码解决 大 | 中 | 小 [2006/07/15 18:14 | 分类: Ajax | by NetFetch ] AJAX乱码解决 用过AJAX的朋友肯定知道javascript是使用UTF-8国际编码,即每个汉字用4个字节来存储,但是这就造成了用AJAX来send数据的时候出现乱码。 Ajax乱码产生主要有2个原因1. xtmlhttp 返回的数据默认
2009-02-10 11:46:00 2015
转载 使用google增加访问量代码
var str_host = window.location.host; if(str_host.toLowerCase( ).indexOf("localhost") > -1){ str_host = "http://" + str_host + "/";}else{ str_host = "http://" + str_host + "/";}str_host = str_hos
2009-02-10 11:43:00 343
原创 C#读写文件总结
C#写入/读出文本文件 publicvoidPage_Load(Objectsrc,EventArgse) { StreamWriterrw=File.CreateText(Server.MapPath(".")+"//myText.txt"); rw.WriteLine("追逐理想"); rw.WriteLine("kzlll"); rw.WriteLine(".NET笔记"); rw.Flu
2009-02-10 11:41:00 2928 1
原创 网页excel导出类
using System;using System.Web;using System.Web.UI.WebControls;using System.Web.UI;using System.IO;namespace Etmc.App.ETicket.Utility{ /// /// Exports a Control to a excel file. /// /// Microsoft
2009-02-10 11:40:00 736
原创 改写后的分页自定义控件
using System;using System.ComponentModel;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Security.Permissions;using System.Collections.Specialized;
2009-02-10 11:38:00 391
原创 较好的缓存类
using System;using System.Collections;using System.Web;using System.Web.Caching;namespace Etmc.App.ETicket.Utility{ /// /// 缓存的工具类 /// public class CacheUtility { /// /// 用于缓存NULL数据 /// pu
2009-02-10 11:35:00 388
原创 比较复杂的字符串处理
using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using System .IO ;using System .Text .RegularExpressions;namespac
2009-02-10 11:31:00 385
原创 一个简单的多线程例子
using System;using System.Threading;namespace C_Project{ class Threading { public Threading() { } public static void Main(string[] args) { Thread thread
2009-02-10 11:29:00 365
原创 C#请求网址Get和Post两种方法
须引入的命名空间有:using System.IO;using System.Net;using System .Text; Post方法: ASCIIEncoding encoding=new ASCIIEncoding(); string post
2009-02-10 11:29:00 1261 1
原创 一个说明抽象类的好例子
using System;namespace C_Project{ public abstract class Vehicle //抽象父类 { protected int wheels; protected float weight; protected readonly static int staticWheels = 1;
2009-02-10 11:28:00 482
原创 一个定时器
using System;using System.Timers;using System .Threading ;namespace ConsoleApplication1{ /// /// Class1 的摘要说明。 /// class Class1 { private static int i=0; /// /// 应用程序的主入口点。 /// [STAThread]
2009-02-10 11:28:00 259
原创 根据制定的XSLT模板将XML数据转化为规定的格式显示出来
/// 根据制定的XSLT模板将XML数据转化为规定的格式显示出来 /// author: duanshaolin /// /// /// /// public static string GetHtmlContent(string strXml,string strXsltPath) { string htmlContent; XmlDocument doc=
2009-02-10 11:25:00 305
转载 理解.Net的三层架构
各层的作用 1:数据数据访问层:主要是对原始数据(数据库或者文本文件等存放数据的形式)的操作层,而不是指原始数据,也就是说,是对数据的操作,而不是数据库,具体为业务逻辑层或表示层提供数据服务.2:业务逻辑层:主要是针对具体的问题的操作,也可以理解成对数据层的操作,对数据业务逻辑处理,如果说数据层是积木,那逻辑层就是对这些积木的搭建。3:表示层:主要表示WEB方式,也可以表示成WINFORM方式,
2009-02-10 11:24:00 270
转载 网站中的安全问题
1:SQL 注入2:XSS3:CSRF4:文件上传1:SQL 注入引起原因:其实现在很多网站中都存在这种问题。就是程序中直接进行SQL语句拼接。可能有些读者不太明白。下面通过一个登录时对用户验证来说明:code:验证时的sql语句: select * from where user="+txtUsername.Text+" and pwd="+txtPwd.Text+"这是一段从数据库中查
2009-02-10 11:20:00 267
原创 客户端的一些处理技术
function ShowCountries(i)//选择国籍 { //alert("ShowCountries.aspx?CName=Nationality" +i +"&CID=hiddenCID"+i); window.open("ShowCountries.aspx?CName=Nationality" +i +"&CID=hiddenCID"+i,"","resi
2007-08-29 13:27:00 376
原创 浏览器滚动条的参数总结
window.scroll 浏览器滚动条的参数总结有朋友常提关于IE滚动条的问题,特总结该贴。简单地介绍一下涉及浏览器滚动条的样式表内容(某些样式需ie5.5+才能支持):1.overflow内容溢出时的设置(设定被设定对象是否显示滚动条) overflow-x水平方向内容溢出时的设置 overflow-y垂直方向内容溢出时的设置 以上三个属性设置的值为visible(默
2007-08-29 13:24:00 344
原创 xml样式表xslt
http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"> 0"> 名称 计量单位 单价 数量
2007-08-29 13:23:00 457
原创 asp.net页面导出为Word文档
/// /// 获取指定远程网页内容 /// /// 所要查找的远程网页地址 /// 超时时长设置,一般设置为8000 /// 是否输出换行符,0不输出,1输出文本框换行 /// 编码方式 /// private string GetRequestString( int timeout, int enterType, Encoding EnCodeType)
2007-08-29 13:22:00 1593
原创 asp.net页面导出为Excel文档
using System;using System.Web;using System.Data;using System.Text;using System.Configuration;namespace SystemFramework{ /// /// Summary description for AppExcel. /// public class AppExcel { pub
2007-08-29 13:21:00 600
原创 ASP.NET保持用户状态的九种选择
ASP.NET保持用户状态的九种选择 在ASP.NET中,有几种保持用户请求间数据的途径--实际上太多了,使没有经验的开发者对在哪个特定的环境下使用哪个对象很困惑。为了回答这个问题,需要考虑下面三个条件: .谁需要数据? .数据需要保持多长时间? .数据集有多大? 通过回答这些问题,你能决定哪个对象为保持ASP.NET应用程序请求间数据提供了最佳的解决方案。图1列出了
2007-08-29 13:20:00 355
原创 元素设置了title属性后页面可以加入如下脚本显示自定仪样式
1。onpropertychange可以捕获元素属性变化事件2。浏览器后保持状态方法: runat="server" style="BEHAVIOR: url(#default#savehistory)">3。--遨游网((InputPassengerInfo_J)this.Page).Title=cantun.SelectSingleNode ("/ProductInfos/Bas
2007-08-29 13:18:00 621
原创 Javascript常用技巧
Javascript中最常用的55个经典技巧 1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键no 可用于Table2. 取消选取、防止复制3. onpaste="return false" 不准粘贴4. oncopy="return false;" oncut="return false;" 防止复制
2007-08-29 13:17:00 434
原创 asp.net中读取Excel文件并插入Sqlserver数据库
客户端代码: BaseData http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema"> 基础信息导入 选择上传文件: runat="
2007-08-29 13:16:00 2478
原创 正则表达式集锦
利用正则表达式限制网页表单里的文本框输入内容: 用正则表达式限制只能输入中文:onkeyup="value=value.replace(/[^/u4E00-/u9FA5]/g,)" onbeforepaste="clipboardData.setData(text,clipboardData.getData(text).replace(/[^/u4E00-/u9FA5]/g,)
2007-08-29 13:10:00 488
原创 Asp.net程序性能优化详解
Asp.net程序性能优化详解 一、性能参数:1、 吞吐量2、 响应时间3、 执行时间4、 可伸缩性二、性能因素:1、ASPX执行环境2、编写代码逻辑三、提高性能的方法:1、 避免不必要的操作.例如:在Page_Load中使用IsPostBack;2、 尽量减少使用服务器端控件3、 关闭不必要的页面Session和控件的Vie
2007-08-29 12:52:00 1344 1
原创 C#中日期格式数据的一些处理方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace SystemFramework.CommonFunctions{ /// /// Summary description f
2007-08-21 11:26:00 1720
原创 C#中金额格式数据处理的一些方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace SystemFramework.CommonFunctions{ /// /// Summary description f
2007-08-21 11:25:00 1524
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人