I'm just starting to learn ASP.NET. I'm using VWD 2010 Express and am trying to delete a file via delete button in a GridView.
Looking at examples on here and elsewhere, one method seems to be similar to this:
using System.IO;
public void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
GridViewRow row = (GridViewRow)GridView1.Rows[e.RowIndex];
string filePath = row.Cells[3].Text;
File.Delete(filePath);
}
Apologies if this is an idiotic noob question, but I'm stuck at the last line, with the error:
'File' does not contain a definition for 'Delete'
I hope this is enough information for someone to point out where I'm going wrong but can post more code if needed.
-EDIT- Solution explorer image added for clarity:

File? Tryglobal::System.IO.File.Deletejust to remove any ambiguity, and let us know how you get on. – Jon Skeet Dec 12 '12 at 22:24Filesbut no class calledFile. Nonetheless, I tried usingglobal::System.IO.File.Deleteand it worked! Thank you very much indeed, sir. If you make your comment an answer, I'll accept it. Also, any ideas what else might've caused it? – Robert Dec 12 '12 at 22:30