Hi,
I have a form for collecting data that is within update panel. On button click
I call a javascript block that then shows " an UpdateProgress control "Processig gif"
to the user.
The problem I have is that the "processing still starts" on button click even if
the user has missed entering some text in the form which has txt boxes and
radio buttons with required field validators
Javascript
<script type="text/javascript">
function showProgress() {
if (Page_IsValid) {
var updateProgress = $get("<%= UpdateProgress1.ClientID %>");
updateProgress.style.display = & ...
Go to the complete details ...