Welcome!

Error handling in Kendo Grid with WCF service/WEB API

Kendo UI has a nice widget ‘Kendo Grid’ which displays data in a tabular format and offers rich support for interacting with data; including paging, sorting, grouping, and selection. Here…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How To Set The Navigation Bar's Background Image Directly

Set the image using method setBackgroundImage:forBarMetrics. setBackgroundImage: portrait forBarMetrics:UIBarMetricsDefault]; setBackgroundImage: landscape forBarMetrics:UIBarMetricsLandscapePhone]; Create resizable images UIImage *portrait = resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)]; UIImage *landscape = resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0,0)]; Set the…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to take backup of SQL Server database schedule wise

We can take SQL Server database backup in various processes. This is one method which will take database backup daily with time basis automatically. To achieve above the functionality we…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Extended Properties for Documenting the SqlServer Database

Step 1: Create a table        CREATE TABLE .( IDENTITY(1,1) NOT NULL, (25) COLLATE Latin1_General_CI_AS NOT NULL, (47) COLLATE Latin1_General_CI_AS NOT NULL, (50) COLLATE Latin1_General_CI_AS NULL,    …

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Searching PurchaseOrders By using SearchClause and SearchOptions in Commerce Server

The PurchaseOrderManager is a sealed class and used to retrieve and store the PurchaseOrder object in Commerce Server. This class has a method named SearchPurchaseOrders() which takes two parameters to…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
How to Create a BaseCatalog and Add Categories and Products to it using Commerce Server APIs.

To place the Products in CatalogManager we need a BaseCatalog. Once we have a catalog schema defined for e-commerce site then we can add actual data in form of BaseCatalogs,…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Paging in DataList

While using the gridView and listView it is an easier pratice to use the data pager control for pagging purpose. But while you are working with datalist control then you…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Graphs in PHP

Fusion Chart :- The link is One has to register there. No charges applied. Just give the name and email id and it will redirect to the download page. This…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
PHP Array Sorting Tricks

Sorting arrays is easy using PHP, thanks to the sort(), ksort(), and related functions. You can sort a one-dimensional array by key, by value, in reverse order, etc. But these…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!