When we use FriendlyUrls, we get the following problem:
The page seems to do a postback and then a redirect to the same page. This means we cannot handle the postbacks on the page (always false)
With friendlyurls= false we have no problem, but we want them...
Björn
Hi Bjorn,
I've encounterd the same problem some time ago. Try to overwrite methode ValidateFriendlyUrl() for your aspx page. Remamber to remove base.ValidateFriendlyUrl() from methode body.
protected override void ValidateFriendlyUrl()
{
}
Let me know if that helped.
Piotr