Gets a System.IO.Stream used to read a file.
A System.IO.Stream that references the desired file.
The Control.OpenFile(string) method returns a System.IO.Stream object that can be used to read the contents of the file specified in the path parameter. The path parameter can be either a relative or root URL without a protocol (such as "~/mySite/myFile.txt), or a physical path, either local ("c:\mySite\myFile.txt") or UNC ("\\myServer\myFile.txt").
The Control.OpenFile(string) method uses file access security to control access to the specified file. If the current ASP.NET user does not have access to the file, then the file is not opened and an System.Web.HttpException exception is thrown to indicate that access was denied. If the path parameter specified a relative path, the exception does not include information about the physical path to the requested file.