Il mio consiglio è quello di lasciar perdere il prompt e usare l' IDE di Visual Studio.
Ti crei in 'new/web site' ed hai un ambiente che si compila senza problemi. Se crei una nuova web page ti viene creato questo codice:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Test3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
Se al suoi interno usi un request, continua a compilarsi.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Test3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string s = Request.FilePath;
}
}