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.

link|improve this question

80% accept rate
1  
Can you provide some example of your code and routing rules? – Daulet Urazalinov Dec 4 '11 at 21:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.