Jul 29, 2011

How To Prevent Repetative Java Script


// use the following event in Your script tag
function pageLoad(sender, args) {
    if (args.get_isPartialLoad()) {
        //alert('Ajax call');
     
    } else {
        //alert('PostBack or initial load');
    }
}

No comments:

Post a Comment

What is the use of n-tier architecture and 3-tier architecture?

how to implement 3-tier architecture in asp.net using c#. 3-Tier architecture is also called layered architecture. Some people called it ...