I am using Ext.Net library along with ASP.net routing.
The following page
~/Admin/Dashboard.aspx
is routed as
administrator/fr/dashboard/
or
administrator/en/dashboard/
I am using Ext.Net FileUpload control.
The following code (on a direct event)
HttpContext.Current.Request.Files[0].SaveAs(fileName);
produces the following exception
System.Web.HttpException (0x80004005): The file '/administrator/en/dashboarddefault.aspx' does not exist. at Ext.Net.HandlerMethods.GetHandlerMethods(HttpContext context, String requestPath) at Ext.Net.HandlerMethods.GetHandlerMethods(HttpContext context, String requestPath) at Ext.Net.DirectRequestModule.ProcessRequest(HttpApplication app, HttpRequest request)
with Status Code: 200, Status Text: OK.
If I do the same thing from
~/Admin/Dashboard.aspx
There is no problem.
Please help.