Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Saturday, July 04, 2009

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > C-Sharp
Search:
What's New - What's Hot
Listings for Assembly Assembly (77)
Listings for Attributes Attributes (76)
Listings for Authentication Authentication (20)
Listings for Automation Automation (50)
Listings for Binding Binding (4)
Listings for C# and XML C# and XML (176)
Listings for Cachy Cachy (27)
Listings for Code Generation Code Generation (167)
Listings for Collection Collection (75)
Listings for Collection Controls Collection Controls (16)
Listings for Com Component Com Component (119)
Listings for Compiler Compiler (30)
Listings for Configuration Configuration (87)
Listings for Custom Controls Custom Controls (494)
More Categories for Database Database (839)
Listings for Date & Time Date & Time (159)
Listings for Debug and Tracing Debug and Tracing (127)
Listings for Email Email (45)
Listings for Error Handling Error Handling (27)
Listings for Events & Delegates Events & Delegates (240)
Listings for Exception Handling Exception Handling (66)
Listings for FAQ FAQ (14)
More Categories for File Management File Management (41)
Listings for Form Handling Form Handling (10)
Listings for Graphics & Charts Graphics & Charts (463)
Listings for Guest Book Guest Book (4)
Listings for Introduction Introduction (50)
Listings for Java And C-Sharp Java And C-Sharp (64)
More Categories for Language Reference Language Reference (226)
Listings for Messaging Messaging (24)
Listings for Metadata Metadata (18)
Listings for Miscellaneous Miscellaneous (925)
Listings for Multilingual Support Multilingual Support (13)
Listings for Multimedia Multimedia (109)
Listings for Namespaces Namespaces (21)
Listings for Object Oriented Programming Object Oriented Programming (316)
More Categories for Office Documents Office Documents (30)
Listings for Performance/Optimization Performance/Optimization (72)
Listings for Reference Reference (14)
Listings for Reflection Reflection (90)
Listings for Registry Registry (10)
Listings for Regular Expressions Regular Expressions (62)
Listings for Remoting Remoting (42)
Listings for Sample Chapters Sample Chapters (76)
Listings for Sample Programs Sample Programs (1306)
More Categories for Scripting Scripting (131)
Listings for Security & Encryption Security & Encryption (249)
Listings for Serialization Serialization (66)
More Categories for Server Controls Server Controls (725)
Listings for Socket Programming Socket Programming (19)
Listings for System.Net System.Net (105)
Listings for Threading Threading (206)
Listings for Tips & Tricks Tips & Tricks (581)
Listings for Type Casting in C# Type Casting in C# (47)
Listings for User Management User Management (44)
Listings for Validation Validation (15)
More Categories for Web Services Web Services (162)
Listings for Windows Forms Windows Forms (417)
Listings for Windows Services Windows Services (111)
 


Optimizing LINQ Queries using DataLoadOptions        
Total Hits: 1  |  Today: 1 Author: Shivprasad koirala       Rating:  
Read Reviews | Write Review |   Your Rating: 

Thanks to everyone who have knowingly / unknowingly helped me to become Microsoft MVP, hope I can live to it. In this section we will understand the round trip issues of LINQ and how we can overcome the same using ‘DataLoadOptions’. One of the biggest issues with LINQ to SQL is that it fires SQL query for every object which has a huge impact on performance. In this article we will see how we can get all data in one SQL Query....

Implementing sort in a generic collection        
Total Hits: 1  |  Today: 1 Author: edlias       Rating:  
Read Reviews | Write Review |   Your Rating: 

This function implements a multi property sort on generic collections of IEnumerable with any plain class. The sort can be execute on one or any of its item type properties. This sort class uses generics, extension methods and linq....

Using ImageMagick to Create Previews and Thumbnails from Uploaded Images        
Total Hits: 2  |  Today: 2 Author: Gary Stafford       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article and the accompanying ASP.NET Web Application demonstrate the use of ImageMagick to create thumbnails and larger preview images, both from an uploaded image file. The Web Application is written in C# using Microsoft Visual Studio 2008....

manage checkbox status in datagrid in C#        
Total Hits: 1  |  Today: 0 Author: Chenggui       Rating:  
Read Reviews | Write Review |   Your Rating: 

The article demostrated using array and session to keep the status of checkbox in datagrid. In ASP.NET, Datagrid could automatically seperate page. Yet for each item on every page, how could we keep the status of checkbox if we have checkbox in the datagrid? We could use javascrip, we could also use a control to keep the checked checkbox index. The fowwoing example is using session to keep the status of checkbox....

DBX Parser        
Total Hits: 3  |  Today: 0 Author: Unruled Boy       Rating:  
Read Reviews | Write Review |   Your Rating: 

The DBXParser can read an Outlook Express DBX file, and extract the raw content (MIME) to EML file, then you can use MIME parsers to get the actual subject body and attachments. It's the first and only (as far as Google tells) pure C# source code that provides simple methods to read and extract, free, pure, without over-headed third-party DLLs. ;)...

Writing a complex custom configuration section        
Total Hits: 3  |  Today: 1 Author: aftabahmed.net       Rating:  
Read Reviews | Write Review |   Your Rating: 

There are following steps involved in creating a custom configuration section handler with multiple entries.
1. Define a class (say CustomElement) to represent configuration section by inheriting it from ConfigurationElement class
2. Define a class to represent your configuration collection (say CustomeElementCollection) by inheriting it from ConfigurationElementCollection, this will hold a collection of the type you defined in step 1.
3. Define a class to represent your custom...

How to use Rijndael to encrypt any file easily?        
Total Hits: 2  |  Today: 0 Author: qxcjust       Rating:  
Read Reviews | Write Review |   Your Rating: 

(Because of the free time,i promised my friend to help her to program one encrypt & decrypt tool for examination,^-^. I have searched some articles,but without the implement of the rijndael,so i decided to realize the rijndael with the preference of the msdn....

Document Preview Application        
Total Hits: 2  |  Today: 0 Author: Tamer Oz       Rating:  
Read Reviews | Write Review |   Your Rating: 

Document Preview is an application that allows users to preview their files such as Pdf, Doc, Xls, Jpg, Mp3, Avi while browsing with an interface like Windows Explorer but without opening an extra application. It also allows users to move, copy, delete folders or files. The idea to develop this software came up to my mind while trying to find a pdf document that contained specific information. My goal was to develop this application with techniques like Abstract Classes, Inheritance, Interfaces,...

Designing Nested Controls        
Total Hits: 2  |  Today: 0 Author: Henry Minute       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to allow a Control, which is a child of another Control to accept having controls dropped onto it at design time. It is not a large article, there is not much by way of code, and this may not be either the 'official' or best way to do this. It does, however, work, and is stable as far as I have been able to test it....

A Handy Code to Get Your Project Connected to Any Database by ADO.NET        
Total Hits: 2  |  Today: 0 Author: MeraMBA.com       Rating:  
Read Reviews | Write Review |   Your Rating: 

It's my first technical article. I found out in the course of ADO.NET application development that developers were not at ease generalising their database utility classes so that they can work with any database provided at the backend. Very useful when you are implementing SOA....

How to Setup a Websphere MQ with C# .NET: GUI to Put/Get to Local & Remote Queues        
Total Hits: 2  |  Today: 0 Author: Member 4538504       Rating:  
Read Reviews | Write Review |   Your Rating: 

This very basic article will show you how to write simple MQ programs in C#.NET as well as how to configure the background IBM Websphere Queue Manager. This example is more directed towards how to setup the Websphere MQ for communication to/from Local & Remote Queue Managers and how to create a C#.NET GUI. I've included a setup guide for the Queue Manager within the zipped source....

Displaying Large Quantities of Data in Windows Controls        
Total Hits: 3  |  Today: 1 Author: Curt C       Rating:  
Read Reviews | Write Review |   Your Rating: 

It is a common situation in working with large quantities of data, where this data needs to be presented to the user. Lists and trees are often used for this purpose. Many times, the programmer attempts to load one of these controls with an entire data set. The problem arises when an increasing number of items are added to these controls; memory usage increases and performance decreases to the point that this solution is no longer acceptable....


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net