I have a rotator reading image urls from the images dir in the local website. when a user clicks the image it assigns the image url to a larger image and then updates the image by way of a RadAjax control... however what happens is that when you click the ribbon image you get an "access denied" dialog if you are not debugging and a VS debug popup if you are... here is the code block of where VS thinks the error is occuring
this._onReadyStateChange = (function () {
if (_this._xmlHttpRequest.readyState === 4 ) {
try {
if (typeof(_this._xmlHttpRequest.status) === "undefined") {
return;
}
}
catch(ex) {
return;
}
_this._clearTimer();
_this._responseAvailable =
true;
try {
_this._webRequest.completed(Sys.EventArgs.Empty);
}
finally {
if (_this._xmlHttpRequest != null) {
_this._xmlHttpRequest.onreadystatechange = Function.emptyMethod;
_this._xmlHttpRequest =
null;
}
}
}
});
I dont know if this is related to the rotator or the RadAjax control so i am starting here. one other post mentioned cross domain posting but i am not doing that.
Thanks, Scott