(Muhammad Bilal Ashraf) It’s very common for a medium/large scale company to have many websites. Users should be presented with the same look & feel in all the websites for better user experience. Apart from that there are certain files (images, styles, scripts etc) that need to be used in each webs
Tag: Development
ASP.NET 4 – More control on Viewstate
(raviverma) Viewstate is an integral part of the ASP.NET Webforms. Viewstate is optional in ASP.NET but they are enabled by default. Storing unnecessary data in Viewstate reduces the performance of the web application. Earlier versions of the ASP.NET provide ways to disable the Viewstate for a speci
Referencing External Configuration Files in .NET
(Deepak Choudhari) It is always a good design practice to keep most generalized configuration settings in application configuration files (i.e., app.config or web.config) and very particular settings in external configuration files.
Using jQuery to Find which ASP.NET Control caused a PostBack
(Suprotim Agarwal) Here’s a simple script that uses jQuery to find out which ASP.NET Button caused a postback. You can similarly implement this script for other ASP.NET Controls too.
Convert a Generic List to a Datatable
(Abhijeet Singhai) There are several cases when we feel need to convert a List of objects into a DataTable. There is a case where I particularly feel this need.
Using the dataView and dataContext: What Doesn’t Work (Yet)
(Peter Vogel) I’m working through a project to recreate what I did in a series of columns that focused on using jQuery in ASP.NET (see Integrating jQuery, Web Services, AJAX and ASP.NET . This time, I’m using a WCF Data Service (though you could use any Web service) and the new dataView and dataCont
Building a Store Locator ASP.NET Application Using Google Maps API (Part 2)
(Scott Mitchell) Last week’s article, Building a Store Locator ASP.NET Application Using Google Maps API (Part 1), was the first in a multi-part article series exploring how to add store locator-type functionality to your ASP.NET website using the free Google Maps API. Part 1 started with an examina
Using .NET (dotnet) Regular Expressions In ColdFusion
(Ben Nadel) Since I am heading off to Scotch On The Rocks tomorrow, I figured this will pretty much be my last post for the next week or so. And, since Regular Expression Day 2010 ends in about a week, I thought I would try something that I have never tried before: loading and running a .NET (dotnet
Why enumerator structs are a really bad idea (redux)
(Simon Cooper) My previous blog post went into some detail as to why calling MoveNext on a BCL generic collection enumerator didn’t quite do what you thought it would. This post covers the Reset method.
StringCollection in C#
(Mahesh Chand) StringCollection class is a new addition to the .NET Framework class library that represents a collection of strings. In this article, we will discuss how to take advantages of its methods and properties to manage a collection of strings.
