PageRouteHandler resides in System.Web.Routing and implements IRouteHandler. It is designed to be a basic handler for Routes defined in an application, eliminating the need to implement custom IRouteHandlers when there are no business rules to validate. It can also check for access to physical files, and is a good quick solution for basic routing. A
WPF Allows for transparent windows which can help shape our desktop program to anything we can drew. In a few simple steps we can make a triangular program window. Here is how: In the main application window, set two values: Background = "Transparent" AllowsTransparency = "True" Use XAML to draw whatever shape you want your window to be. In our case
Release management is the process of managing software releases. Every program and application needs to be maintained, periodically updated and released to market in order to keep its business value. Although this seems pretty simple to the end user, usually no more than a few button clicks, the process of rolling out releases can be very complex and
The ListView control is a natural progression of the GridView. It displays data by using user-defined templates instead of row fields, allowing for layout flexibility. Paging, sorting, inserting and editing records are all built into a ListView, and, can be greatly manipulated both in the layout and functionality. Let’s look at some cool features
I was reading a tutorial from Ruslan Yakushev titled Developing a Custom Rewrite Provider for URL Rewrite Module on iis.net the other day and decided to give it a try. I downloaded the samples and rewrote the DB Provider with my own logic. The result was good, but, the module uses its one configuration section. It’s great if you have access to
MapReduce has been gaining some popularity lately. With the Parallel Library Computing patterns and objects databases like MongoDB using it. MapReduce is a computing algorithm which uses key value pairs in order to quickly find results in large amounts of data by dividing it into many intermediate key value pair based temporary result sets, that can
An interview with Gal Ratner from Inverted Software FW Editor: What are your plans or objectives for the near future? Gal Ratner: We recently made an investment in social media and community integration software and we have plans to have the community play a dominant role in the support and brand management and recognition of our products and services
What is output caching? Output caching is a way of caching the generated HTML created from your ASP.NET pages. Output caching can cache an entire page or fragments of a page. The first request to a page is served dynamically, and then any subsequent requests are served from the output cache until the specified time expires. how to use output caching
This is the main database diagram for Shopping Cart .NET. It does not include the ASP membership tables. You can download Shopping Cart .NET from codeplex at http://shoppingcartnet.codeplex.com
I recently needed to convert an array of integers to an array of bytes in order to work with an existing database design. I looked online and couldn’t find a function to convert between the two types so I wrote my own. Convert int[] to byte[]: public static byte [] GetByteArrayFromIntArray( int [] intArray) { byte [] data = new byte [intArray