browse by tag: ajax in language
sort by
Building a Gmail Style File Uploading System using ASP.NET 2.0
in .NET added by admin, on 20/12/2007 ajax beginner tutorials file upload
This article examines how to upload files to a web server using ASP.NET 2.0 with a different approach. With a click of a hyperlink you can show the "Choose File" dialog box and immediately once the user clicks the OK button from the File Choose dialog box, a file can be uploaded to the server.
comment save reportAn Introduction to AJAX and Atlas with ASP.NET 2.0
in .NET added by admin, on 25/10/2007 ajax database intermediate
Traditionally, web applications have left a lot to be desired from a user experience standpoint, due primarily to the "request/response" lifecycle. Any interaction with a page typically requires a postback to the web server (a "request"), which then performs any server-side tasks needed and returns the updated page's markup (the "response"). Outside of intranet-based applications, such behavior adds a bit of a lag when interacting with a page. One approach to improving the end user's experience is to use AJAX. AJAX-enabled pages provide a slick, responsive user experience, making web-based applications function more like desktop-based ones.
comment save report