Tag : AJAX UpdateProgress Control Example with UpdatePanel

ASP.NET AJAX UpdateProgress Control Example with UpdatePanel <%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void btnSubmit_Click(object sender, EventArgs e) { System.Threading.Thread.Sleep(2000); } </script> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> .auto-style1 { width: 638px; height: 256px; } .auto-style2 { width: 48%; height: 256px; } </style> </head> <body> ..

Read more