<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2996216568949260776</id><updated>2012-02-16T11:23:54.845-08:00</updated><title type='text'>dot net</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-3692059923222667551</id><published>2007-01-19T02:11:00.000-08:00</published><updated>2007-01-19T02:17:32.821-08:00</updated><title type='text'>IIS 6.0</title><content type='html'>&lt;strong&gt;Overview of IIS 6.0 Architecture (IIS 6.0)&lt;br /&gt;&lt;/strong&gt;IIS 6.0 provides a redesigned World Wide Web Publishing Service (WWW service) architecture that can help you achieve better performance, reliability, scalability, and security for your Web sites, whether they run on a single server running IIS or on multiple servers.&lt;br /&gt;IIS 6.0 runs a server in one of two distinct request processing models, called application isolation modes. Application isolation is the separation of applications by process boundaries that prevents one application or Web site from affecting another and reduces the time that you spend restarting services to correct problems related to applications.&lt;br /&gt;In IIS 6.0, application isolation is configured differently for each of the two IIS application isolation modes. Both modes rely on the HTTP protocol stack (also referred to as HTTP.sys) to receive Hypertext Transfer Protocol (HTTP) requests from the Internet and return responses. HTTP.sys resides in kernel mode, where operating system code, such as device drivers, runs. HTTP.sys listens for, and queues, HTTP requests.&lt;br /&gt;The new request-processing architecture and application isolation environment enables individual Web applications, which always run in user mode, to function within a self-contained worker process. A worker process is user-mode code whose role is to process requests, such as returning a static page or invoking an Internet Server API (ISAPI) extension or filter. Worker processes use HTTP.sys to receive requests and send responses over HTTP.IIS 6.0 Request &lt;strong&gt;Processing Models&lt;br /&gt;&lt;/strong&gt;Worker process isolation mode is the new IIS request processing model. In this application isolation mode, you can group Web applications into application pools, through which you can apply configuration settings to the worker processes that service those applications. An application pool corresponds to one request routing queue within HTTP.sys and one or more worker processes.&lt;br /&gt;Worker process isolation mode enables you to completely separate an application in its own process, with no dependence on a central process such as Inetinfo.exe to load and execute the application. All requests are handled by worker processes that are isolated from the Web server itself. Process boundaries separate each application pool so that when an application is routed to one application pool, applications in other application pools do not affect that application. By using application pools, you can run all application code in an isolated environment without incurring a performance penalty.&lt;br /&gt;Worker process isolation mode delivers all the benefits of the new IIS 6.0 architecture, including multiple application pools, health monitoring and recycling, increased security and performance, improved scalability, and processor affinity. For example, the new health monitoring features can help you discover and prevent application failures, and can also help protect your Web server from imperfect applications.&lt;br /&gt;&lt;br /&gt;IIS 6.0 Services&lt;br /&gt;IIS 6.0 provides four Internet services: the World Wide Web Publishing Service (WWW service) for hosting Internet and intranet content; the File Transfer Protocol (FTP) service for hosting sites where users can upload and download files; the Network News Transfer Protocol (NNTP) service for hosting discussion groups; and the Simple Mail Transfer Protocol (SMTP) service for sending and receiving e-mail messages.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-3692059923222667551?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/3692059923222667551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=3692059923222667551' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/3692059923222667551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/3692059923222667551'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2007/01/iis-60.html' title='IIS 6.0'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-1417882377433719349</id><published>2007-01-10T04:51:00.000-08:00</published><updated>2007-01-10T04:53:57.078-08:00</updated><title type='text'>Adding JavaScript to a Server Control</title><content type='html'>It is quite easy to add JavaScript to a specific server control that resides on an ASP.NET page. Let's take a look at the button server control as an example. If you drag and drop a Button HTML server control (HtmlInputButton Class) onto a page using either Microsoft Visual Studio® .NET or the ASP.NET Web Matrix and run it as a server control, it should have the following construction:                            &lt;br /&gt;                              &lt;input type="button" value="Button" runat="server" id="Button1"&gt;&lt;br /&gt;This is a normal button that can be programmatically manipulated in the code-behind or server-side script of an ASP.NET page. For example, to assign the button text when the page is generated, simply use the value property of the button after this element is turned into an HTML server control (right-click on the control and select Run As Server Control).&lt;br /&gt;Visual Basic .NET&lt;br /&gt;         Private Sub Page_Load(ByVal sender As System.Object, _&lt;br /&gt;         ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;         Button1.Value = DateTime.Now.ToString()&lt;br /&gt;         End Sub&lt;br /&gt;Visual C# .NET&lt;br /&gt;       void Page_Load(object sender, EventArgs e) {&lt;br /&gt;       Button1.Value = DateTime.Now.ToString();&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-1417882377433719349?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/1417882377433719349/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=1417882377433719349' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/1417882377433719349'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/1417882377433719349'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2007/01/adding-javascript-to-server-control.html' title='Adding JavaScript to a Server Control'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-1567319277562789944</id><published>2006-12-29T23:21:00.001-08:00</published><updated>2006-12-29T23:34:29.691-08:00</updated><title type='text'>web sevices</title><content type='html'>&lt;p&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Web Services&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;If you ask a developer what Web services are, you'll hear something like, "self-describing software modules, semantically encapsulating discrete functionality, wrapped in and accessible via standard Internet communication protocols like XML and SOAP."&lt;br /&gt;But if you ask a business leader who has implemented Web service-based solutions, you'll get a different kind of answer. You'll hear that Web services are an approach that helps the business connect with its customers, partners, and employees. They enable the business to extend existing services to new customers. They help the business work more efficiently with its partners and suppliers. They unlock information so it can flow to every employee who needs it. They reduce development time and expense for new projects. You'll hear less about what Web services are and more about what they enable the business to do.&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#3333ff;"&gt;Benefits of Web Services&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;By enabling applications to share data across different hardware platforms and operating systems, Web services provide many benefits, including:&lt;br /&gt;• Opening the door to new business opportunities by making it easy to connect with partners.&lt;br /&gt;• Delivering dramatically more personal, integrated experiences to users through the new breed of smart devices—including PCs.&lt;br /&gt;• Saving time and money by cutting development time.&lt;br /&gt;• Increasing revenue streams by enabling businesses to easily make their own Web services available to others.&lt;br /&gt;&lt;a href="http://www.microsoft.com/net/basics.mspx#top"&gt;&lt;/a&gt;&lt;span style="color:#3333ff;"&gt;&lt;strong&gt;Connecting Applications Through Web Services&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;Web services are revolutionizing how applications talk to other applications—or, more broadly, how computers talk to other computers—by providing a universal data format that lets data be easily adapted or transformed. Based on XML, the universal language of Internet data exchange, Web services can communicate across platforms and operating systems, regardless of the programming language in which the applications are written.&lt;br /&gt;Each Web service is a discrete unit of code that handles a limited set of tasks. However, although Web services remain independent of each other, they can loosely link themselves into a collaborating group that performs a particular task.&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;strong&gt;Web Services Use Industry-Standard Protocols&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;Web services also make it possible for developers to choose between building all pieces of their applications, or consuming (using) Web services created by others. This means that an individual company doesn't have to supply every piece for a complete solution. The ability to expose (announce and offer) your own Web services creates new revenue streams for your company.&lt;br /&gt;Web services are invoked over the Internet by means of industry-standard protocols including SOAP; XML; and Universal Description, Discovery, and Integration (UDDI). They are defined through public standards organizations such as the World Wide Web Consortium (W3C).&lt;br /&gt;SOAP is an XML-based messaging technology standardized by the W3C, which specifies all the necessary rules for locating Web services, integrating them into applications, and communicating between them. UDDI is a public registry, offered at no cost, where one can publish and inquire about Web services. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-1567319277562789944?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/1567319277562789944/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=1567319277562789944' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/1567319277562789944'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/1567319277562789944'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/web-sevices.html' title='web sevices'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-5008998150171469643</id><published>2006-12-29T02:19:00.000-08:00</published><updated>2006-12-29T02:40:02.957-08:00</updated><title type='text'>deploying dotnet framework</title><content type='html'>&lt;ul&gt;&lt;li&gt;The Microsoft .NET Framework version 3.0 (formerly known as WinFX) is the new managed-code programming model for Windows.&lt;/li&gt;&lt;li&gt;The .NET Framework 3.0 adds new technologies to the .NET Framework 2.0, which makes the .NET Framework 3.0 a superset of the .NET Framework 2.0.&lt;/li&gt;&lt;li&gt;Any component that ships as part of .NET Framework 3.0 will be serviced on the platforms it is supported on.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-5008998150171469643?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/5008998150171469643/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=5008998150171469643' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/5008998150171469643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/5008998150171469643'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/deploying-dotnet-framework.html' title='deploying dotnet framework'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-3719753023301818205</id><published>2006-12-27T01:22:00.000-08:00</published><updated>2006-12-27T01:23:26.281-08:00</updated><title type='text'></title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-3719753023301818205?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/3719753023301818205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=3719753023301818205' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/3719753023301818205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/3719753023301818205'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/blog-post.html' title=''/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-5407208857690806579</id><published>2006-12-26T02:32:00.000-08:00</published><updated>2006-12-26T02:47:44.103-08:00</updated><title type='text'>JIT &amp; their types</title><content type='html'>&lt;ul&gt;&lt;li&gt;The JIT compiler compiles just the function in assembly as they are called.&lt;/li&gt;&lt;li&gt;As the application runs &amp; more methods are compiled to native code,the application runs faster.&lt;/li&gt;&lt;li&gt;Functionality that is never used does not incur the overhead of compilation. compiled code is cached in memory,so no monitoring or "Code Path Analysis" is needed as seen in many other JIT compiler.&lt;/li&gt;&lt;li&gt;&lt;span style="color:#990000;"&gt;Types of JIT&lt;/span&gt;,&lt;strong&gt;Pre-JIT&lt;/strong&gt;(compiles entire code into native code at one stretch),&lt;strong&gt;Ecno-JIT&lt;/strong&gt;(compiles code part by part freeing when required),&lt;strong&gt;Normal-JIT&lt;/strong&gt;(compiles only that part of code when called &amp;amp; places in cache).&lt;/li&gt;&lt;/ul&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-5407208857690806579?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/5407208857690806579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=5407208857690806579' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/5407208857690806579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/5407208857690806579'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/jit-their-types.html' title='JIT &amp; their types'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-2968099679830566449</id><published>2006-12-26T02:30:00.000-08:00</published><updated>2006-12-26T02:31:12.797-08:00</updated><title type='text'>ASP.NET</title><content type='html'>Internet Information Services (IIS) version 5.0 or later. To access the features of ASP.NET, IIS with the latest security updates must be installed prior to installing the .NET Framework.ASP.NET is supported only on the following platforms: Microsoft Windows 2000 Professional (Service Pack 3 recommended), Microsoft Windows 2000 Server (Service Pack 3 recommended), Microsoft Windows XP Professional, and Microsoft Windows Server 2003 family.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-2968099679830566449?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/2968099679830566449/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=2968099679830566449' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/2968099679830566449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/2968099679830566449'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/aspnet_26.html' title='ASP.NET'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-6871522467086758388</id><published>2006-12-26T02:28:00.000-08:00</published><updated>2006-12-26T02:29:31.998-08:00</updated><title type='text'>common language specification</title><content type='html'>The CLS(Common language Specification) is the subset of the common type system.Any .NET assembly that will be used by other languages must expose only those features common to all languages that will use it. CLS is well defined set of types implemented in .NET language.If an assemblyonly uses CLS features, it can be used by any CLS-complaint language.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-6871522467086758388?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/6871522467086758388/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=6871522467086758388' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/6871522467086758388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/6871522467086758388'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/common-language-specification.html' title='common language specification'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2996216568949260776.post-6207276818056005199</id><published>2006-12-26T02:27:00.001-08:00</published><updated>2006-12-26T02:27:58.272-08:00</updated><title type='text'>assembly</title><content type='html'>&lt;ul&gt;&lt;li&gt;DotNet assembly is the standard component developed with the Microsoft.NetDotNet assemblies may or may not be executable that is.,file(or)dynamic link library (DLL)file.All the DotNet assembly contains the definition of types,version information for the type,meta-data &amp; manifest.Two kinds of assembliesprivate-&gt;This assemblies are simple &amp;amp; copied with each calling assemblies.shared-&gt;This assemblies are copied to single location. Each shared assembly has a four part including its face name,version,public key token &amp;amp; culture information. An assembly can be a single file or it may consist of multiple files. &lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2996216568949260776-6207276818056005199?l=dotnet-sugi.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dotnet-sugi.blogspot.com/feeds/6207276818056005199/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2996216568949260776&amp;postID=6207276818056005199' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/6207276818056005199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2996216568949260776/posts/default/6207276818056005199'/><link rel='alternate' type='text/html' href='http://dotnet-sugi.blogspot.com/2006/12/assembly.html' title='assembly'/><author><name>vathan</name><uri>http://www.blogger.com/profile/13605567694841329283</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
