How to get connection strings to various databases in ASP.NET 2.0

How to use connection strings to various Databases in ASP.NET 2.0
Some of the values and strings are used across all the pages of a website. It is a tedious process to code those values and strings in each page of the website.
The connection string will be used in many pages of the web site if [...]

A Utility Method to Run stored procedures and Get results in a Data Table in C# ASP.NET

Hi,
I have just came into a problem where I need to execute many different stored procedures which may output in different ways. Instead of writing seperate codes for each of the stored procedures I build a utility method which will take the stored procedure name and the parameter list as input and it will return [...]