使用Subversion进行版本控制

by Boris 5/21/2009 11:46:00 AM
如果您是一个Subversion的初学者,我十分希望您能够快速开始学习使用Subversion。如下是一个简单的步骤,首先是最快速的入门教程: http://www.subversion.org.cn/?action-viewnews-itemid-1,其中的Subversion入门教程动画能给你一个最直观的学习过程。 如果您缺乏使用版本控制工具的基础,我想您一定要静下心来阅读一些基本概念: http://www.subversion.org.cn/svnbook/1.4/svn.basic.html。当然如果要系统地学习,最好认真读一下我们翻译的《使用Subversion进行版本控制》: http://www.subversion.org.cn/svnbook/,因为你遇到的大多数问题都能在这本书里找到答案。. [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

Subversion

Download Surface Demo including DeepZoom

by Admin 5/3/2008 3:11:00 PM
 [引用] http://www.cnblogs.com/yangdawang/articles/1180265.html            http://weblogs.asp.net/mschwarz/archive/2008/03/24/download-surface-demo-including-deepzoom.aspx Well, I forgot to publish the source code of the changed Microso... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

.net

.NET Micro Framework Library FusionWare.SPOT

by Admin 4/29/2008 10:40:00 PM
[引用] http://weblogs.asp.net/mschwarz/archive/2008/04/29/net-micro-framework-library-fusionware-spot.aspx            Pinging With Pingers             87 RPC and RPC2 Services You Can Ping ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

FrameWork

87 RPC and RPC2 Services You Can Ping

by admin 4/29/2008 3:01:00 PM
[引用] http://www.prosperityachiever.com/traffic-strategies/87-rpc-and-rpc2-services-you-can-ping/ If you have read my previous posts Pinging With Pingers and Traffic Strategy 4: Drive Blog Traffic by Pinging , then you already know what the ping is. If not, then please read them to get a better und... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

other

Silverlight 的单元测试

by Admin 4/24/2008 12:18:00 PM
Unit Testing with Silverlight One of the important capabilities we shipped with the Beta1 release of Silverlight 2 was a unit test harness that enables you to perform both API-level and UI-level unit testing.  This testing harness is cross browser and cross platform, and can be used... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

asp.net

ASP.NET 页生命周期概述

by Admin 4/21/2008 9:28:00 PM
 [理论部分摘自MSDN] ASP.NET Dynamic Data Preview Available     ASP.NET 页运行时,此页将经历一个生命周期,在生命周期中将执行一系列处理步骤。这些步骤包括初始化、实例化控件、还原和维护状态、运行事件处理程序代码以及进行呈现。了解页的生命周期非常重要,这样就能在合适的生命周期阶段编写代码,以达到预期效果。此外,如果开发自定义控件,则必须熟悉页生命周期,从而正确地初始化控件,使用视图状态数据填充控件属性以及运行所有控件行为逻辑。(控件的生命周期基于页的生命周期,但是页引发的控件事件比单独的... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

asp.net | FrameWork

ASP.NET 网站中的共享代码文件夹(Bin and App_Code)

by Admin 4/21/2008 6:13:00 PM
 [理论部分摘自MSDN] ASP.NET MVC Source Refresh Preview     如果您的 Web 应用程序包括要在多个页之间共享的代码,您可以将代码保存在 Web 应用程序根目录下的两个特殊文件夹(Bin 文件夹和 App_Code 文件夹)中的某个文件夹中。 Bin 文件夹     可以在 Bin 文件夹中存储编译的程序集,并且 Web 应用程序任意处的其他代码(如页代码)会自动引用该文件夹。典型的示例是您为自定义类编译好的代码。您可以将编译后的程序集复制到 W... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

asp.net

如何在 SQL Server 中 EXECUTE 字符串时返回值

by Admin 4/21/2008 1:24:00 PM
    我们经常使用 EXECTUE关键字来执行SQL字符串: [code:tsql] DECLARE @IntVariable INT DECLARE @SQLString NVARCHAR(500) -- Build and execute a string with one parameter value. SET @IntVariable = 35 SET @SQLString = N'SELECT * FROM pubs.dbo.employee WHERE job_lvl = ' +  &... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Sql Server

SQL Server 中 sp_executesql 与 EXECUTE 的差异

by Admin 4/21/2008 11:53:00 AM
    在SQL Server中 EXECUTE 关键字是用来执行用户定义函数、系统过程、用户定义存储过程或扩展存储过程。同时还可以执行SQL字符串。而系统存储过程sp_executesql 执行可以多次重用或动态生成的 Transact-SQL 语句或批处理。Transact-SQL 语句或批处理可以包含嵌入参数。     下面我们就对这两个功能的相同部分“执行Transact-SQL字符串”的特点及差异做一个简单的介绍。     总的指导思想... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Sql Server

[转载]法国:唯一敢站出来说实话的政客 - Jean-Luc Melenchon

by Admin 4/19/2008 6:29:00 PM
[应用] http://bbs.news.sina.com.cn/tableforum/App/view.php?bbsid=4&subid=0&fid=76797&tbid=2732 以下内容为转载自“MSN论坛”本人无法证明其内容的真实性,请网友自行判断!!  法国ESSONNE市的参议院 Jean-Luc Melenchon 在法国电视台事实评论中勇敢站出来,认为法国在奥运火炬的表现太过份了,有人在背后故意诋毁和反对中国。  以下是他和法国电视台二台主持人的讨论,... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

other

"IS NULL" and "= NULL" 在 sql server 中的区别

by Admin 4/7/2008 3:44:00 PM
    当我们在 sql server 中用 DECLARE 申明一个变量时, sql server 将会把变量存储在SQLs 内存空间的变量列表区域(variable table),变量列表中包含了变量的名称和存储地址。然而如果我们在创建变量的时候并没有给变量赋值的话,sql server是没有为变量分配内存的,因此变量并没有在内存中被定义。 然后当你用 SET 关键字给变量赋值的话,sql server 将为这个值分配内存空间并将地址存放在变量列表(variable table)中。如果你再次为这个变量赋值的话新的内存地址将替换旧的地址。 ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Sql Server

使用跟踪查看器查看 ASP.NET 跟踪信息

by Admin 4/7/2008 12:16:00 PM
    如果启用了对应用程序的跟踪,当请求任意页面程序时,该页将收集跟踪信息并执行它所包含的任意跟踪语句。可以在跟踪查看器中查看跟踪输出。使用跟踪查看器,您可以在已从应用程序请求的页中选择特定的请求。           跟踪查看器是 asp.net 内置的处理程序,我们可以在配置文件中找到它的配置信息。(参考HTTP 处理程序介绍(IHttpHandler, IHttpAsyncHandler)) <add path="trace... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

asp.net

Powered by 包大人文化传媒 1.5.0.0 Theme by Mads Kristensen

About the author

Name of author Boris Yang
A troupe of little vagrants of the world, leave your footprints in my words.

E-mail me Send mail

Calendar

<<  July 2009  >>
MoTuWeThFrSaSu
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789

View posts in large calendar

Pages

Recent comments

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2009

Sign in