search
top

Dynamically load css and js files using JavaScript

function loadjscssfile(filename, filetype) { if (filetype == "js") { //if filename is a external JavaScript file // alert('called'); var fileref...
read more

Bring custom window form on top of setup project window

Recently i faced a problem while creating visual studio setup project with custom form, so, i would like to share it with solution. Problem: I have an application that is being deployed via a...
read more

Get sql server instances using C#

SqlDataSourceEnumerator instance = SqlDataSourceEnumerator.Instance; System.Data.DataTable table = instance.GetDataSources(); foreach (System.Data.DataRow row in table.Rows) { ...
read more

Multiple columns using CSS3

At present, this feature is available in Firefox and Safari 3. When the module becomes finalised in the CSS3 specification it will be adopted by other browsers and rolled into their updates. There...
read more

Mixed mode assembly is built against version ‘v2.0.50727′ of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.

One of the recent problems we’ve seen is that, because of the support for side-by-side runtimes, .NET 4.0 has changed the way that it binds to older mixed-mode assemblies. These assemblies...
read more

Difference between IQueryable and IEnumerable interface

IEnumerable<T>  IEnumerable<T> is best suitable for working with in-memory collection. IEnumerable<T> doesn’t move between items, it is forward only collection. IQueryable<T> IQueryable<T>...
read more
Page 1 of 612345...Last »
top