I have a form on a masterpage which is very simple but will not work when the site is at the root.
Works fine:
Does not work:
I click the button and it postsback to
But nothing has executed, now if I try the form again on /default.aspx it will postback and execute fine.
What am I doing wrong?
Thanks for the reply, I just figured it out!
I am using isapi to make sure my urls are all lower case, and 301 redirecting any upper case URL’s to their equivalant lowercase version.
On postback its action is Default.aspx … My script was redirecting it to default.aspx and loosing the values before it was posted back.. DOH!