If you use cross-page postback and javascript validation together, there is a chance that they can conflict. It is because user-defined validation can breaks the cross-page postback (which uses javascript as well to redirect to next page). Solution can be found here.
Posts Tagged ‘javascript’
JavaScript pageLoad() for MasterPage and ContentPage
Sometimes, we need to use pageLoad() function in both MasterPage and ContentPage to get something done. But, if we add two function with such same name, that function residing in ContentPage will be ignored by the browser. To correct this behaviour, we need to extend pageLoad() function in MasterPage as follows: In MasterPage function pageLoad(sender, [...]