I have a simple ASP.Net 3.5 site that is essentially of the master/detail variety. A master page shows a GridView of database records, and clicking on Edit for a given row brings up an edit form with a DetailsView. Pretty standard stuff. Now, I have the GridView in an UpdatePanel, and launch the edit form with a jQuery FancyBox. After saving the edited record, the child page updates the parent, and briefly highlights the edited row. Lots of AJAXy goodness, and it all works perfectly...
... except when I uncheck "Anonymous access" for the site in IIS. Then, the jQuery part gets a bit squirrelly and unpredictable. Namely, the row highlighting stops working most of the time. If I go back and re-enable Anonymous access, it all works fine.
I turned off Anonymous access since I'd like to have the site know who the user is based on their Windows login. I find it quite odd that this setting would break jQuery stuff, so I'm probably just not grasping some elementary concept. Would love to hear of anyone else who has had this problem (and hopefully overcome it!).
Thanks, Chris