asynchronous
PHP AJAX example: asynchronous file upload
Asynchronous file uploads is quote popular feature in modern AJAX web-applications. However standard AJAX classes (XmlHttpRequest) does not have capabilities to process or send files selected with fi more>> Asynchronous file uploads is quote popular feature in modern AJAX web-applications. However standard AJAX classes (XmlHttpRequest) does not have capabilities to process or send files selected with "file dialog" (input type="file"). This article contains example application (trivial file-sharing service, like rapidshare, megaupload or yousendit) which uses embedded frames (IFRAME) to upload file. While file is uploaded to hidden frame, user can still access web-page and fill "file description" field.<<less
Use Asynchronous Execution Pattern in ASP.NET 1
Asynchronous operations or execution pattern is another face of multithreading. Some operations are time consuming, take long time to complete, and block user interface waiting for their completion. This tutorial explains how to to create more>> Asynchronous operations or execution pattern is another face of multithreading. Some operations are time consuming, take long time to complete, and block user interface waiting for their completion. This tutorial explains how to to create asynchronous pages for long time consuming operations.<<less
Built-In Asynchronous I/O Support in ASP.NET 1
As we all know, I/O operations is one of the most time consuming operations. In the same time, IO is one of the most needed operations almost in all applications. To make our applications faster and having more responsive user interface, we need to more>> As we all know, I/O operations is one of the most time consuming operations. In the same time, IO is one of the most needed operations almost in all applications. To make our applications faster and having more responsive user interface, we need to perform those I/O operations asynchronously. This tutorial explains how to make faster and more responsive user interface through asynchronous I/O operations in ASP.NET 2.0 Web application.<<less
DomAxh - DOM translated Asynchronous XHTML 0.5
DomAXh is a javascript file that inserts XMLHTTP requests results into your page, by translating plain XHTML (plain ol HTML that follows certain basic rules) into XML and then back into your page via the browsers DOM. So not having to reload the web more>> DomAXh is a javascript file that inserts XMLHTTP requests results into your page, by translating plain XHTML (plain ol HTML that follows certain basic rules) into XML and then back into your page via the browsers DOM. So not having to reload the web page for each user interaction is what makes Ajax so hot. What makes it NOT is having to use either cryptic XML (having find a way to represent the response in HTML DOM structure, with all the node creating and appending that it implies), or having to settle with the simplistic innerHTML (and thus having to cope with the fact that the browser doesnt parse it so your onclicks, events and scripts just wont work) in order to show the user any new content. Enter DomAXh (pronounced Dom Ash). Using XMLDOM to XHTMLDOM translation (IE & FF compatible), DomAXh makes life easyer for the developer because his/her server response only has to be valid XHTML and DomAXh takes over rendering the response correctly in the calling web page.<<less
CPAINT : Cross-Platform Asynchronous INterface Toolkit
CPAINT (Cross-Platform Asynchronous INterface Toolkit) is a true AJAX (Asynchronous JavaScript+XML) and JSRS (JavaScript Remote Scripting) implementation that supports both PHP and ASP/VBscript. CPAIN more>> CPAINT (Cross-Platform Asynchronous INterface Toolkit) is a true AJAX (Asynchronous JavaScript+XML) and JSRS (JavaScript Remote Scripting) implementation that supports both PHP and ASP/VBscript. CPAINT provides you the code required to implement AJAX and JSRS on the back-end, while the returned data is manipulated, formatted, and displayed on the front-end in JavaScript. This allows you to build web applications that can provide nearly real-time feedback to the user, including nearly real-time data updates.<<less
Matthew Casperson 1
See how to easily load Papervision textures from the web using the asynchronous Loader class. Demo and source code included. more>> See how to easily load Papervision textures from the web using the asynchronous Loader class. Demo and source code included.<<less
A Simple Link Checker using Ajax
In this simple script we use Ajax (Asynchronous JavaScript and XML) to allow all the links on your web pages to be automatically checked for validity every time the page is visited! Can be easily retrofitted to legacy HTML pages. The Ajax call is made more>> In this simple script we use Ajax (Asynchronous JavaScript and XML) to allow all the links on your web pages to be automatically checked for validity every time the page is visited! Can be easily retrofitted to legacy HTML pages. The Ajax call is made to a simple PHP script at the server which checks the links on the page and reports any broken ones to the webmaster via email. The page visitor need never know anything has happened! Free, of course.<<less
C Threads 3.6
C Threads 3.6 offers you a wonderful application which provides process scoping, a feature that has been greatly missed in the linux community. more>>
C Threads 3.6 offers you a wonderful application which provides process scoping, a feature that has been greatly missed in the linux community. The aim of this library, is to provide the programmer with an easy to use class, that can be further inherited to provide a rich set of threaded functionality rarely seen in a linux environment.
Full C is provided, without any wrapping around underlying C code, which gives more compact and faster objects. The library provides process scoping, a feature that has been greatly missed in the linux community. This feature allows different programs to share memory and control variables, for synchronization and direct data communications.
It has the ability to simulate asynchronous I/O on file descriptors. An example provided with the library, shows how to communicate with a modem with an asynchronous method where data is obtained and stored in a priority queue, giving the main process full ability to handle other tasks. Such an I/O class, can be used to handle data input from several different file descriptors simultaneously, but is limited to handling only one server file descriptor per class.
<<lessDynamic Form Loader 1.0
This is a dynamic form loader that uses asynchronous javascript and XML (AJAX) to quickly load data from the server wthout a round-trip. This makes the user experience much better, with faster loading. more>> This is a dynamic form loader that uses asynchronous javascript and XML (AJAX) to quickly load data from the server wthout a round-trip. This makes the user experience much better, with faster loading.<<less
Basic Introduction about MSMQ in .NET Framework 1.0
Message Queuing or what you can call as MSMQ itself is an asynchronous programming. This is because the clients does not wait for the server to read the data sent to it. But there is a difference between the MSMQ itself and the asynchronous programming. more>> Message Queuing or what you can call as MSMQ itself is an asynchronous programming. This is because the clients does not wait for the server to read the data sent to it. But there is a difference between the MSMQ itself and the asynchronous programming. In MSMQ world, all the sender and recipient transaction can be occur in disconnected and connected method, while the asynchronous programming, the transaction can only occur in connected mode. Message Queuing is kind of email for application to application communication. But MSMQ has lots more features to offer, such as guaranteed delivery ,transactions,confirmatio ns, express mode using memory and so on. With MSMQ you can send,receive, and route messages in a connected or disconnected environment.<<less
AJAX Matters
AJAX Matters is an informational site about AJAX (short for Advanced Javascripting and XML or Asynchronous JavaScripting and XML) and how these technologies are applied to web development. more>> AJAX Matters is an informational site about AJAX (short for "Advanced Javascripting and XML" or "Asynchronous JavaScripting and XML") and how these technologies are applied to web development.<<less
Ajax Basic Tutorial
AJAX, or Asynchronous JavaScript and XML, is a web technology that is based on JavaScript. more>> Ajax Basic Tutorial provides you with a powerful application which is based on JavaScript and HTTP requests. By using AJAX, JavaScript can be used to get/send data from/to a server without reloading the whole webpage with the help of XMLHttpRequest object<<less
Basic Introduction to ADO.NET in ASP.NET 1.0
ADO.NET was first introduced in version 1.0 of the .NET Framework and provided an extensive array of features to handle data either live,while connected to the database ,or when disconnected.. With the introduction of ADO.NET 2.0, you can have more more>> ADO.NET was first introduced in version 1.0 of the .NET Framework and provided an extensive array of features to handle data either live,while connected to the database ,or when disconnected.. With the introduction of ADO.NET 2.0, you can have more features and easier programming model. Some of the newly added features include the capability to to bulk load large quantities of data from varieties of sources, to batch process updates to the database with fewer roundtrips back to the database server, to reuse the same live connection for multiple operations as well as to achieve asynchronous access to the database.<<less
Random Yahoo Links using AJAX 1
A small PHP file on your server pulls in Yahoo links randomly. An AJAX (Asynchronous Javascript and HTMLRequest) script on your web page serves up a different link each time a viewer clicks on it. No need to reload page to get different links. Very small more>> A small PHP file on your server pulls in Yahoo links randomly. An AJAX (Asynchronous Javascript and HTMLRequest) script on your web page serves up a different link each time a viewer clicks on it. No need to reload page to get different links. Very small and fast script.<<less
ASP.NET 2.0: New features in Data Access
In this tutorial you will learn about new features in Data Access, Data binding, The XPathBinder, XPathBinder.Eval, Connection Strings, The factory class, Batch operations, Asynchronous Commands, SQL more>> In this tutorial you will learn about new features in Data Access, Data binding, The XPathBinder, XPathBinder.Eval, Connection Strings, The factory class, Batch operations, Asynchronous Commands, SQL Bulk Copy, ColumnMappings, Enhancements to SQL Server 2005, ADO.NET Class Enhancements, DataTableReader, Serializing a DataTable, The XMLSerializer, RemotingFormat and Managing Views of Data.<<less