Software / Technology Tips

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 also supports cookieless sessions with the following attribute addition in the web.config within system.web node. With the above config setting, it carry the session id…

read more
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 should be places inside the TAG for Windows Phone And for Silverlight Applications. 2) This also requires a reference to System.Windows.Interactivity dll. This example consistes…

read more
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 requests. So we have to explicitly manage state of the page. There are various Client side state management as well as server side state management…

read more
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 different controls. In this tip I am going to show you a way to do all these operations in a single function. Step 1: –…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Few Tips to Increase the performance in Asp.net Applications

Few Tips to Increase the performance in Asp.net Applications 1..Uses of Connection pooling— Opening the connection in the database is a intensive task. It may be the slowest operation in asp.net. Furthermore a database has a limited amount of connections available and each connections requires some amount of memory. This things can be avoid with…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Enhancing performance of web applications through output caching

Improving the performance of your ASP.NET Web application through output caching !!! Page level Caching is a technique to store output of a request sent to the page, which helps to increase the performance of application. Data can be fetched from previous cache memory instead of processing the request again. Following is the directive you…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

How to install and use telerik Rad menu in Existing DNN Skin

Telerik is a company which provides its various products for ASP.net there are many products in this field.Since the arrival of DotNetNuke version 5.2.0 Telerik and DotNetNuke form a strategic partnership in which Telerik ASP.NET AJAX Controls are distributed with every DotNetNuke Community and Professional Edition download, so that RadControls technology is exposed to the…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

JavaScript – ParseInt – Something all web developers should know

How often do you use parseInt in your javascript applications? Have you noticed some strange behavior of the same? If you notice carefully you can find parseInt(“08”) and parseInt(“09”) return value 0 instead of 8 and 9. This might lead to serious problems if you continue to ignore it. FACTORS BEHIND THIS In Javascript, the…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Transition Using Corona In Crossplatform Mobile App

Introduction : Everyone wants to add some wow effects on their application by different means. Using Animation is one of the way to add some visual effects to the app. In corona transition can be used to make animation. Description : Transition API in corona gives you the oppurtunity to give animation effect to any…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Get Default TagPrefix of an Organization using REST End Point in MS CRM 2011

It’s often required to get the default tagprefix of an organization dynamicaly using REST endpoint. We can get the default tagprefix from Default Publisher.But to know which is Default Publisher we need to get the DefaultSolution. The following code snippet helps us to find the default tagprefix. //Get the default TagPrefix of the Organization var…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!