<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>星辰.Net技术社区</title>
    <link>http://www.netcsharp.cn/</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 星辰.Net技术社区</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Thu, 28 Aug 2008 14:54:26 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>Silverlight2中自定义MessageBox(消息框)</title>
    <description><![CDATA[首先是普通样式：http://daizhj.cnblogs.com/images/cnblogs_com/daizhj/messagebox_normal.jpg 

     接着是显示图形样式：
http://daizhj.cnblogs.com/images/cnblogs_com/daizhj/messagebox_shape.jpg
     使用新的样式风格：
http://]]></description>
      <link>http://www.netcsharp.cn/showtopic-1332.aspx</link>
      <category>Silverlight</category>
      <author>admin</author>
      <pubDate>Wed, 27 Aug 2008 13:56:00 GMT</pubDate>
    </item>
    <item>
      <title>ExtJs2.0学习(1)--Ext.MessageBox</title>
    <description><![CDATA[大家都知道，刚开始搞extjs的时候，很是有点困难，所以本人在新手刚入门后准备了这个系列的文章。
个人认为用extjs做后台很不错，布局比较完美！
1.Ext.MessageBox.alert()方法
      有四个参数，为简单起见，主要介绍前面三个参数：
      alert( title , msg , function(){} )
      其中title，msg为必选参数]]></description>
      <link>http://www.netcsharp.cn/showtopic-1331.aspx</link>
      <category>JavaScript</category>
      <author>admin</author>
      <pubDate>Wed, 27 Aug 2008 07:33:00 GMT</pubDate>
    </item>
    <item>
      <title>Python基础教程(8) - 字符串中的字符倒转</title>
    <description><![CDATA[方法一，使用：s = 'python'

print s

方法二，使用reverse()方法：l = list(s)

l.reverse()

print ''.join(l)

输出结果：
nohtyp
nohtyp]]></description>
      <link>http://www.netcsharp.cn/showtopic-1330.aspx</link>
      <category>Python</category>
      <author>admin</author>
      <pubDate>Wed, 27 Aug 2008 07:26:00 GMT</pubDate>
    </item>
    <item>
      <title>Oracle9内存参数调优技术详解</title>
    <description><![CDATA[内容
实例结构
oracle实例=内存结构+进程结构
oracle实例启动的过程，其实就是oracle内存参数设置的值加载到内存中，并启动相应的后台进程进行相关的服务过程。
进程结构
oracle进程=服务器进程+用户进程
几个重要的后台进程：
DBWR：数据写入进程.
LGWR:日志写入进程.
ARCH:归档进程.
CKPT:检查点进程(日志切换；上一个检查点之后，又超过了指]]></description>
      <link>http://www.netcsharp.cn/showtopic-1329.aspx</link>
      <category>Oracle</category>
      <author>admin</author>
      <pubDate>Mon, 25 Aug 2008 23:36:00 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server 2000多线程管理机制详解</title>
    <description><![CDATA[SQL Server6.5使用Windows的调度处理管理多线程，和其它Windows应用程序一样，它使用Windows标准API，没有用到任何隐藏API，这使得SQL Server的工作线程同其它多线程Windows程序完全一样，没有任何特殊的优先级，同等的被Windows调度。在SQL Server7.0之后，需要具有处理几千并发用户的能力，而Windows的线程调度方法，使得SQL Serv]]></description>
      <link>http://www.netcsharp.cn/showtopic-1328.aspx</link>
      <category>MSSQL</category>
      <author>admin</author>
      <pubDate>Mon, 25 Aug 2008 23:29:00 GMT</pubDate>
    </item>
    <item>
      <title>自定义LINQ Provider（中）：IQueryable和IQueryProvider 概述</title>
    <description><![CDATA[IEnumerable&amp;lt;T&amp;gt;接口 在上一篇《自定义LINQ Provider（上）：Expression Tree揭秘》一文的最后，我说到了这样一句话：需要注意的是LINQ to Objects并不需要任何特定的LINQProvider，因为它并不翻译为表达式目录树，带着这个问题，我们先来看下面这段代码，查询的结果query为IEnumerable&amp;lt;String&amp;gt;类型：st]]></description>
      <link>http://www.netcsharp.cn/showtopic-1327.aspx</link>
      <category>LINQ</category>
      <author>admin</author>
      <pubDate>Mon, 25 Aug 2008 23:23:00 GMT</pubDate>
    </item>
    <item>
      <title>自定义LINQ Provider（上）：Expression Tree揭秘</title>
    <description><![CDATA[认识表达式目录树 究竟什么是表达式目录树（ExpressionTree），它是一种抽象语法树或者说它是一种数据结构，通过解析表达式目录树，可以实现我们一些特定的功能（后面会说到），我们首先来看看如何构造出一个表达式目录树，最简单的方法莫过于使用Lambda表达式，看下面的代码：Expression&amp;lt;Func&amp;lt;int, int, int&amp;gt;&amp;gt; expression = (a, ]]></description>
      <link>http://www.netcsharp.cn/showtopic-1326.aspx</link>
      <category>LINQ</category>
      <author>admin</author>
      <pubDate>Mon, 25 Aug 2008 23:20:00 GMT</pubDate>
    </item>
    <item>
      <title>教你如何用Javascript做日历控件（Calendar）</title>
    <description><![CDATA[每个人都是从“不会”到“会”（或者，从无到有）走过来的。当初为了这样一个在静态 html 文件可应用的轻量级控件，找了不少站点。源于自己出身于 c#，故在应用方式上做了类 c# 包装。     先谈怎么应用，然后说我是怎么实现的。以下是我在源码包中的演示代码： function CalendarDemon(){  
///   
/// 如何使用 Calendar 类的演示代码. 参见代码 J]]></description>
      <link>http://www.netcsharp.cn/showtopic-1325.aspx</link>
      <category>JavaScript</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 17:34:00 GMT</pubDate>
    </item>
    <item>
      <title>SqlServer中索引碎片介绍,以及怎样分析索引碎片、重整索引</title>
    <description><![CDATA[Pages &amp;amp; Extents（页和扩展盘区）
    SQL Server 2000最基本的数据存储单元是data page，1个8K的存储空间。在分配存储空间时，SQL Server 2000并不是每次分配1个page，基本的存储空间分配单元是8个page的连续空间，称为extent。
    关于SQL Server 2000的page、extents和index结构，参考：MS]]></description>
      <link>http://www.netcsharp.cn/showtopic-1324.aspx</link>
      <category>MSSQL</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 16:53:00 GMT</pubDate>
    </item>
    <item>
      <title>PetShop之业务逻辑层设计</title>
    <description><![CDATA[业务逻辑层（Business LogicLayer）无疑是系统架构中体现核心价值的部分。它的关注点主要集中在业务规则的制定、业务流程的实现等与业务需求有关的系统设计，也即是说它是与系统所应对的领域（Domain）逻辑有关，很多时候，我们也将业务逻辑层称为领域层。例如Martin Fowler在《Patterns ofEnterprise ApplicationArchitecture》一书中，将整]]></description>
      <link>http://www.netcsharp.cn/showtopic-1323.aspx</link>
      <category>设计模式GOF</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 16:47:00 GMT</pubDate>
    </item>
    <item>
      <title>使用多线程里查询数据库并填充dataGrid</title>
    <description><![CDATA[在查询大数据量时，窗体界面会不动，“正在查询...”的提示也不能显示。所以打算用多线程来实现，
可是当在线程里面执行到 this.dataGridDF.DataSource=dt.DefaultView;填充数据
时却提示报错，说什么该线程不能调用主线程创建的控件等等。
后来查了许多资料，终于搞定。可以在查询数据库时操作别的了，“正在查询...”的提示也显示了。 
//或者在前面用一个线程]]></description>
      <link>http://www.netcsharp.cn/showtopic-1322.aspx</link>
      <category>WinForm</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 16:44:00 GMT</pubDate>
    </item>
    <item>
      <title>Oracle PGA参数</title>
    <description><![CDATA[PGA: 程序全局区，服务器进程使用的内存区域，包括特定服务器进程的数据和控制信息，例如使用的操作系统资源等。
UGA:用户全局区，特定Session使用的内存区域，例如Session的SQL工作区、登陆认证信息等。Session的SQL工作区大小对查询性能的影响比较关键，shared server模式时UGA从SGA的large pool（如果有设置）或者shared pool（没有设置lar]]></description>
      <link>http://www.netcsharp.cn/showtopic-1321.aspx</link>
      <category>Oracle</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 15:17:00 GMT</pubDate>
    </item>
    <item>
      <title>JavaScript对象模型-执行模型</title>
    <description><![CDATA[数据类型
基本数据类型
基本数据类型是JS语言最底层的实现。
简单数值类型: 有Undefined, Null, Boolean,Number和String。注意，描述中的英文单词在这里仅指数据类型的名称，并不特指JS的全局对象N an, Boolean, Number,String等，它们在概念上的区别是比较大的。
对象: 一个无序属性的集合，这些属性的值为简单数值类型、对象或者函数。同]]></description>
      <link>http://www.netcsharp.cn/showtopic-1320.aspx</link>
      <category>JavaScript</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 15:08:00 GMT</pubDate>
    </item>
    <item>
      <title>领域驱动设计 Domain-Driven Design</title>
    <description><![CDATA[Part I: Putting the Domain Model to Work
   领域驱动讲求将领域模型作为领域专家、分析人员、开发人员之间交流沟通的核心。传统的瀑布模型方式下，缺乏有效的反馈机制，在链路上领域知识以不同的表现形式进行传递，知识的丢失容易造成需求与实现之间的断层。传统的迭代方式下，软件产品的优秀程度取决于开发者对领域知识的兴趣和掌握程度。

Chapter One. C]]></description>
      <link>http://www.netcsharp.cn/showtopic-1319.aspx</link>
      <category>设计模式GOF</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 15:04:00 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Expression Studio 2 简体中文正式版永久激活序列号</title>
    <description><![CDATA[***内容隐藏***]]></description>
      <link>http://www.netcsharp.cn/showtopic-1318.aspx</link>
      <category>资源共享</category>
      <author>kirayamato</author>
      <pubDate>Sun, 24 Aug 2008 13:55:00 GMT</pubDate>
    </item>
    <item>
      <title>Hash Table结构详解(2)</title>
    <description><![CDATA[上篇文章，我们知道了散列函数会使得 Key 发生碰撞冲突。
那么，.NET 的 Hashtable 类是如何解决该问题的呢？
很简单，探测。
我们首先利用散列函数 GetHashCode() 取得 Key 的散列值。为了保证该值在数组索引范围内，让其与数组大小求模。这样便得到了Key 对应的 Value 在数组内的实际位置，即 f(K) = (GetHashCode() &amp;amp; 0x7F]]></description>
      <link>http://www.netcsharp.cn/showtopic-1317.aspx</link>
      <category>算法/数据结构</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 10:48:00 GMT</pubDate>
    </item>
    <item>
      <title>LINQ漫游(9)——LINQ to SQL语句之Insert/Update/Delete操作</title>
    <description><![CDATA[Insert/Update/Delete操作Insert1.简单形式说明：new一个对象，使用InsertOnSubmit方法将其加入到对应的集合中，使用SubmitChanges()提交到数据库。NorthwindDataContext db = new NorthwindDataContext();
var newCustomer = new Customer
{
    Custome]]></description>
      <link>http://www.netcsharp.cn/showtopic-1316.aspx</link>
      <category>LINQ</category>
      <author>admin</author>
      <pubDate>Sun, 24 Aug 2008 09:51:00 GMT</pubDate>
    </item>
    <item>
      <title>Python基础教程(7) - 连接字符串(join %)</title>
    <description><![CDATA[join 方法用于连接字符串数组s = 

print ''.join(s)

print '-'.join(s)

输出结果：
abcd
a-b-c-d
使用 % 连接多个变量a = 'hello'

b = 'python'

c = 1

print '%s %s %s %s' % (a, b, c, s)

......]]></description>
      <link>http://www.netcsharp.cn/showtopic-1315.aspx</link>
      <category>Python</category>
      <author>admin</author>
      <pubDate>Sat, 23 Aug 2008 17:37:00 GMT</pubDate>
    </item>
    <item>
      <title>LINQ漫游(8)——LINQ to SQL语句之Union All/Union/Intersect</title>
    <description><![CDATA[LINQ体验(8)——LINQ to SQL语句之Union All/Union/Intersect和Top/Bottom和Paging和SqlMethods我们继续讲解LINQ to SQL语句，这篇我们来讨论Union All/Union/Intersect操作和Top/Bottom操作和Paging操作和SqlMethods操作 。
Union All/Union/Intersect操作适]]></description>
      <link>http://www.netcsharp.cn/showtopic-1314.aspx</link>
      <category>LINQ</category>
      <author>admin</author>
      <pubDate>Sat, 23 Aug 2008 14:01:00 GMT</pubDate>
    </item>
    <item>
      <title>化零为整WCF(8) - 消息处理(使用流数据传输文件)</title>
    <description><![CDATA[示例
1、服务
IStreamed.cs
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;



using System.ServiceModel;

using System.IO;



namespace WCF.Servic]]></description>
      <link>http://www.netcsharp.cn/showtopic-1313.aspx</link>
      <category>WCF</category>
      <author>admin</author>
      <pubDate>Sat, 23 Aug 2008 13:56:00 GMT</pubDate>
    </item>
  </channel>
</rss>