lakul:2)I want to create web page that can facilitates user to Download file from local machine or from remote machine.
Hi lakul,
If the file is placed in the file system, perhaps you can try the following code snippet to download a
file.
protected void Page_Load(object sender, EventArgs e)
{
Response.WriteFile("~/App_Data/test.zip");
}
If the file is stored in a DataBase, here is a thread which is similar to this situation, please check
the URL below.
http://forums.asp.net/t/1179885.aspx
Hope this Information is helpful!
Xun