Apr 12th 12
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
Apr 9th 12
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
Apr 3rd 12
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
Mar 28th 12
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
Mar 27th 12
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
Mar 14th 12
Difference between IQueryable
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
popular articles
random articles
