Thanks lot, that is a good one, I think the point is the following part in web.config file and which redirects all the .aspx files.
<httpHandlers>
<add verb="*"
path="*.aspx"
type="PageBuilder, AssemblyName"/>
</httpHandlers>
This works fine with files with known extension, but it does not work when I put the wildcard as below;
<httpHandlers>
<add verb="*"
path="*.*"
type="PageBuilder, AssemblyName"/>
</httpHandlers>
I might be doing something definitly wrong here but I still could;t find it