i just found a solution to one of the wierdest bug i have ever seen and i am still trying to find the reason ...
i got a old CMs in Classic ASP. in the editor page theres a javascript changing an image property
function removeimg(objimg){
objimg.onclick = "";
objimg.src = "/Logiciel/_Altitude_image/interface/Gestion_acces/spacer.gif";
objimg.width = 16;
objimg.style.cursor = "arrow";
}
one of my client using IE6 told me that when she was saving her content in english it was overwriting her content in french but the Language is saved in a Classic asp session so i started to investigate the bug (none of my 200 other client got that kind of problem) so after testing over and over again putting response.end in the code and response.write of my session to find out where it was changing i found out that it was in the javascript itself
this is the part i cant explain ... i had to put objimg.style.cursor = "arrow"; in comment at first to realize that once that line was out there was no more problem with my asp session.
then after a few test i changed objimg.style.cursor = "arrow"; to objimg.style.cursor = "pointer";
and it worked just fine ... i was wondering if anyone got that kind of problem before ... and if someone could explain to me how changing a cursor could affect my server side classic asp session
thank you