User1004743283 posted
greeting there
i dont know if you are using scriptmanager add the following javascript below the script manager tag where this js used to disable the postback triggerer untill the respose ends
function DisableAsyncPostbackCaller()
{
var pbControl =
null;var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_beginRequest(BeginRequestHandler);
prm.add_endRequest(EndRequestHandler);
function BeginRequestHandler(sender, args) {
pbControl = args.get_postBackElement();
pbControl.disabled = true;
}
function EndRequestHandler(sender, args) {pbControl.disabled =
false;
pbControl = null;
}
}
hope being usefull and if i dontget u right please send ur details