Introduction: In this article,i am going to explain about how to develop a one simple Tab control using ajax. Main: Create one ajax function for retrieving the respective tab, function testTab(tabid) { if (navigator.appName =="Netscape"){ xmlHttp = new XMLHttpRequest(); } if (navigator.appName =="Microsoft Internet Explorer"){ xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } [...]
Category Archives: AJAX
Creating Developing File Upload control using ajax asp.net c#
Posted by on September 14, 2010
0 comments
Introduction: In this article,i am going to explain about how to develop a one simple file upload control using ajax. Main: In defaullt.aspx, <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="AJAXFileUpload._Default" %> <html> <head> <script language="javascript" type="text/javascript"> function ShowProgressBar() { if ($get(’myFile’).value.length > 0) { $get(’UpdateProgress1′).style.display = ‘block’; } } </script> <title>File Upload</title> </head> <body> <form id="form1" [...]