Last weeks we saw all of the finalists banners in action and
learned about each of them ( ,Now it's time to cast your vote in our sidebar -
you have one week to vote! The winner and finalists will receive some wonderful
Prizes
asp C# how to remove the uploaded file in IIS server
Use FSO or System.IO to do all your file handling/management or teh File Scope
using System.IO;
File.Delete("C:\\MyFiles\\SomeFile.xml");
Or
File.Delete (Server.MapPath(YourVirtualPath));
if you are working with virtual directories in your web page