I am working on an AJAX project which saves data on the fly. It is working in my development environment, but not when I build to the production site.
I am using a POST, with Content-Type = application/x-www-form-urlencoded.
Here is my experience:
Checked out latest from Visual Source Safe, and brought it to my machine
Tested the AJAX save on my machine - Visual Studio .Net 1.1 environment
Everything worked perfectly:
o all edits got saved immediately upon leaving each cell
o No potentially dangerous Request.Form value error when navigating to another page, refreshing the page, etc.
Checked the files back in
Deployed to our production site
Tested on production, where it will NOT save when moving from cell to cell, and we get the potentially dangerous Request.Form value error when navigating to another page after changing a cell
I am absolutely positive that the same set of files is on my machine as is in VSS. And that the same set got built to production.
Is this an IIS issue? If so, any ideas on where to look in IIS settings?
|