I have a .net site set up that runs fine as long as you specify the full filename including .aspx extension on the page. As you try and run a default page without the specifiying default.aspx then a postback will not fire.
e.g.
http://www.site.com/ (postback does not work)
http://www.site.com/default.aspx (postback works)
http://www.site.com/directory (postback does not work)
http://www.site.com/directory/default.aspx (postback works)
I've never had this problem before on a .net website so struggling to understand what the problem is. I've checked most basic things, i.e. ensuring default.aspx is a default page etc. checking my web.config file against a site that is working properly etc.
I still don't understand why this behaviour is occurring. Any ideas?