PDA

View Full Version : Stream and file stream


mariechristine
01-09-2004, 04:27 AM
I have the following url of picture:

String strBLOBFilePath = "http://202.123.56.178//thumbnails//gif//tn_Aagry_u0.gif";

System.Net.WebClient client = new System.Net.WebClient();
System.IO.Stream data = client.OpenRead( strBLOBFilePath);

How can I convert this stream read to a filestream??