It works for the new dll.
I have another question. Can we specify the relative path for image file? It seems to me that it looks for c:\windows….
We have the web application and we can install the image on web server.
//Creating a string variable to store the url of the logo/picture
string logo_url = "c:\\dog.jpg"; // absolute path
//Declaring a FileStream object
FileStream inFile;
//Declaring a byte array
byte[] binaryData;
//Creating the instance of the FileStream object to open the //logo/picture in the stream
inFile = new System.IO.FileStream(logo_url, System.IO.FileMode.Open, System.IO.FileAccess.Read);
Thanks
Charlie