自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 Event properties in JavaScript

在JavaScript中可以得到一些用户操作信息,如点击鼠标键,敲击键盘,移动鼠标等。我给出了获得这些用户操作信息的一个例子代码。值得一提的是我们在JS中可以写document一些方法,不可以写window的方法,Firefox中可以对window的方法进行操作。今天写例子时用的是window结果 Firefox正常,而IE不能正常显示。http://www.w3.org/TR/xht

2007-06-19 09:50:00 420

原创 Silverlight 介绍

Microsoft Silverlight 是一个跨浏览器的、跨平台的插件,为网络带来下一代基于.NET的媒体体验和丰富的交互式应用程序。Silverlight提供灵活的编程模型,并可以很方便地集成到现有的网络应用程序中。Silverlight可以对运行在Mac或Windows上的主流浏览器提供高质量视频信息的快速、低成本的传递。 在工作之余,我会继续关注并继续使用Silverlight

2007-10-08 10:26:00 356

原创 ASP.NET 页面响应时间

在ASP.NET页面中,如果由服务器端到页面端的下载过程中,如果时间过长,那么页面将不能正常显示。 而是显示为Request timed out.间要增长响应时间需要修改web.config文件。修改内容如下:

2007-07-04 11:00:00 1598

原创 HTTP和HTTPS的区别

 HTTP1.1(Hypertext Transfer Protocol Vertion 1.1)超文本传输协议-版本1.1 它是用来在Internet上传送超文本的传送协议。它是运行在TCP/IP协议族之上的HTTP应用协议,它可以使浏览器更加高效,使网络传输减少。任何服务器除了包括HTML文件以外,还有一个HTTP驻留程序,用于响应用用户请求。您的浏览器是HTTP客户,向服务器发送请求,当浏览

2007-06-26 13:12:00 591

原创 Visual Studio 2005版本区别

Visual Studio 2005有三个不同的版本Express,Team Suite和Profession。这个三版本有什么区别呢?Visual Studio 2005 Team 提供了全面紧密集成并支持可扩展的开发工具,它们可以帮助软件开发团队减少开发复杂度,并在整个开发过程当中增进开发团队之间的沟通与协作。它包含了 Microsoft 解决方案框架(MSF),MSF 提供了一套久经考验

2007-06-22 10:44:00 2434

原创 JavaScript and DropDownList

JavaScript would be very useful when we want to change web in client. Here i want to write down how to change DropDownLists content without  connect to the sever. The code below is the script code.

2007-06-18 15:13:00 420

原创 SQL server 2005 I Ranking Functions and TOP operator

The Database Engine in SQL server 2005 introduces a new category of functions called ranking functions. The functions that make up this category are: RANK: Returns the rank of each row wi

2007-06-18 15:05:00 553

原创 CLR Triggers

A trigger is a special type of stored procedure that automatically runs when a language event executes. SQL Server includes two general types of triggers: data manipulation language (DML) and data def

2007-06-18 15:01:00 494

原创 系统表

In the database there are system tables we can use. We could get all objects that is created within a databasethe from sysobjects and we can get all the columns from table syscolumns. Here is a exampl

2007-06-18 14:57:00 391

原创 The PK of a table

Here is the code to get the PK of a table.CREATE PROCEDURE GetTablePK(@TableName Varchar(20) = NULL)ASBEGINselect [name] from syscolumns where    [id] in (select [id]             from sysobjects  

2007-06-18 14:37:00 442 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除