Hi!

It's been a while since I used Spring.NET for the last time. I remember developing a web application a couple of years ago where I had all my aspx files organized inside a folder named "aspx", and those where registered as Spring objects in my config files. The only web form outside the "aspx" folder was the "default.aspx". Then, in my application, I could go directly to a webform without typing the entire path, just the file name.

Say, for example, I had a web form in ~/aspx/admin/users/userProfile.aspx
I could get to userProfile.aspx when typing "localhost/userProfile.aspx" instead of the entire "localhost/aspx/admin/users/userProfile.aspx"

Now I'm trying to do this again but it isn't working. Am I missing something in my config files or doing something wrong?