Posted on: 3/31/2011 8:41:14 PM | Views : 764

hi all,
I have a problem with a wait notification in a web page.
The aspx code looks like that:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="testPage.aspx.cs" Inherits="testPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <asp:ImageButton ID="ImageButton1" name="ImageButton1" runat="server" ImageUrl="../App_Themes/images/Process_button_0.png" onMouseOver="javascript: this.src='../App_Themes/images/Process_button_1.png';" onMouseOut="javascript: this.src='../App_Themes/images/Process_button_0.png';" onclick="ImageButton1_Click" /> <div id="hidepage" style="posit ...

Go to the complete details ...