What are the limitations of Ajax?
Answers were Sorted based on User's Feedback
Answer / v madhu babu
An Ajax Web Application tends to confuse end users if the network bandwidth is slow and there is no full postback running.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajesh
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------------------------------
| Is This Answer Correct ? | 0 Yes | 1 No |
Does ajax work with java?
Is json is a programming language?
What is the difference between synchronous postback and asynchronous postback? : asp.net ajax
is the xmlhttprequest object part of a w3c standard?
Explain what is polling in ajax?
List the different states of xmlhttprequest with their description? : asp.net ajax
What's the diff b/w destructor and garbage collector?
how to send more values through respnseText
Describe the accordionextender control?
What are the components of the ASP.NET Ajax Client Library?
Is it true that ajax is code browser compatible?
What are the goals of Ajax?