How can i show the new name to the client?

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!!

you may rename the file on server, but no way to pass it back to client yet. Try to make another ajax request from client to server after your file is uploaded, and get the name you need.