Hi!
I have a simple question,
How can i show the new name to the client?
no the file name i want a custom name…
public void ProcessRequest(HttpContext context)
{
if (context.Request.QueryString[“sessionId”].ToString() != “”)
{
FileProcessor fp = new FileProcessor(UploadFolder);
fp.CurrentFileName = context.Request.QueryString[“fileName”]; <<<<<Here i want put the new name and onfileuploaded method get the new name of the file,but how?..
Thx!!