Const FOF_CREATEPROGRESSDLG = &H0&
Const MyZip ="C:Documents and SettingsabcdDesktopWIPMyZipFile.zip"
Const File1 = "C:Documents and SettingsabcdDesktopWIPABCD.xml"
'-------------- create empty zip file ---------
'Create the basis of a zip file.
CreateObject("Scripting.FileSystemObject") _
.CreateTextFile(MyZip, True) _
.Write "PK" & Chr(5) & Chr(6) & String(18, vbNullChar)
'-------------- zip ---------------------------
'get ready to add files to zip
With CreateObject("Shell.Application")
'add files
.NameSpace(MyZip).CopyHere File1, FOF_CREATEPROGRESSDLG
End With
wScript.Sleep 1000
wscript.echo "Done!"
'-------end adding files to zip folder------------------------------
An Ajax Web Application tends to confuse end users if the network bandwidth is slow and there is no full postback running.
JSON supports following data types:
String
Number
Boolean
Array
Object
Null
The basic goals of ASP.NET Ajax are:
Reduced web server hits
Reduced Network load
Interactive user interface
Platform and architecture neutrality
Support for both synchronous and asynchronous communication
Provide a server- and client-side framework
Proxied calls are made through stub objects which can be called from PHP classes on the JavaScript side in AJAX.
Proxyless calls are made using utility JavaScript functions like HTML_AJAX.replace() and HTML_AJAX.append() in AJAX.
There are four ready states in Ajax:
Initialization
Request
Process
Ready
There are two types of post backs:
Synchronous Postback
Asynchronous Postback
ErrorTemplate which is the child tag of Script Manager is used to handle exception handling in Ajax.
Following components are used in Ajax client library:
Component Layer
Core Services Layer
Browser Compatibility Layer
The controls of script Management group are:
ScriptManager
ScriptManagerProxy
The AJAX category on takluu.com is designed for aspiring web developers and frontend engineers who want to build seamless, responsive user experiences. As one of the most crucial technologies in modern web development, AJAX (Asynchronous JavaScript and XML) allows web pages to send and receive data from servers without reloading the entire page—making it a core topic in interviews.
This section covers the fundamentals of AJAX, including how it works, how to make XMLHttpRequest
or use fetch()
for server communication, and real-world scenarios such as form validation, dynamic content loading, and live search. We also explore how AJAX integrates with frameworks like jQuery, React, Angular, and Vanilla JavaScript.
Sample questions you’ll find here include:
-
“What is AJAX and how does it improve UX?”
-
“Difference between synchronous and asynchronous requests?”
-
“How to handle errors in AJAX calls?”
-
“Explain the role of Promises and async/await with AJAX.”
-
“How can you prevent caching issues in AJAX requests?”
Each topic is explained in a simple, human-friendly language with practical examples and diagrams to help you visualize the flow of requests. This category is curated based on real interview questions asked at top tech companies and startups.
So if you’re preparing for a frontend, full-stack, or JavaScript developer role—Takluu’s AJAX section is your go-to guide to crack every technical round with clarity and confidence.