Welcome to AspAdvice Sign in | Join | Help

September 2006 - Posts

How to use a MemoryStream to Perform Downloads and Bypass the File System and the Problems Between Browsers and Servers

I was recently was tasked to develop a solution to download data from an Oracle database and allow the client to save the data as an XML document without the use of the file system. I turned to the System.IO Namespace to accomplish this specifically using
Posted by sswafford | 0 Comments
Filed under: , ,

Searching for the elusive close() and dispose() solution

I recently asked the question on closing and releasing resources such as a database connection using C#. During my reading and particle experience I have use methods such as the following in the past. Example 1 SqlConnection conn = new SqlConnection(myConnectionString);
Posted by sswafford | 0 Comments