views:

21

answers:

1

I was just looking at analytics for an ASP.NET MVC 1 site running on Mono.

I saw that once in a while users are brought to this URL: /?aspxerrorpath=/UrlRouting.axd

What would cause this?

A: 

an error?

/

is your error handler

/UrlRouting.axd

threw the exception.

Look at your customErrors section in web.config

Andrew Bullock