Welcome!

Retrieve Hex Code of RGB format color to avoid cross browser back color issue

At times we need to calculate the equivalent hexadecimal code of the RGB color format to avoid cross-browser compatibility issue. For instance, you want to get the background-color of elements…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Change the UI of ListBox and DropDownList on the fly

The ListBox and DropDownList both are very useful for their own advantages. Their differences lie in their User Interfaces, DropDownList take less space but need more clicks to access while…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Debug A Webpage In a Mobile Device Using WEINRE

It describes how to debug a mobile webpage in a phonegap application. Weinre is used to debug a mobile web page remotely. When using  weinre, there are three programs interacting…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Observable binding data to the controls using WinJS.Bind

Goal : Observable binding data to the controls using WinJS.Bind from the JS. Let’s bind a Student data to the text boxes located in the Html file. We will make…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Few Tips on C#/.Net

1. Nullable Types/Nullable Modifier(?):  We cannot directly assign “null” value to “Value-Type”. For this purpose nullable types has been introduced in C# 2.0.  using this we can assign null to…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Cookieless Session in ASP.NET

The Session state in any web technology depend on cookie at the client end to store and resend session id back and forth between client browser and web server. But Asp.net…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Using Interaction Triggers to bind Events to View Modals

he method of binding Events to View Modals only differs in the Xaml, rest of the Code remains the Same. Note: 1 ) All the contents in the xaml Page…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
An easy way of passing value from one page to other in ASP.NET

At times we need to pass some values across pages in our application. Now, as commonly known, HTTP is based upon stateless protocol, it can’t remember status of the past…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!
Populate multiple controls from DB in a single function using a single DataSet

During the development of a page you may need to populate a number of controls from DB. In that case you have to write a number of functions to populate…

150 150 Burnignorance | Where Minds Meet And Sparks Fly!