I have the following code to save a file
Response.ContentType = strFileName;
Response.AppendHeader("Content-Disposition", "attachment;filename=" + strFileName);
Response.TransmitFile(strUpdPath+strFileName);
Response.End();
Here usercan specify any name at runtime while saving the file. I would like to retrive the filename after user saving the file.
Any options are available to get that??
Mark this as answer, if it is.....
With regards
Nishithraj Narayanan