Take a look at:
http://msdn.microsoft.com/en-us/libr...le.delete.aspx
You need to know where you uploaded the file to, then when you are finish working with the file, you should be able to delete it simply by using code like:
Code:
if (File.Exists(path))
{
File.Delete(path);
}
It uses the System.IO namespace.