Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

readme.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

###Icon AsyncLoader: Dynamic Ajax Requests Made Easy

Helper classes to dynamic load content in an ASP.NET View using JQuery using one line of code

How to Install

AsyncLoader are only two helper classes with no external dependencies (except jquery and asp.mvc) Is distributed as a NuGet package. It can be installed issuing the following command in the Package Manager Console:

PM> Install-Package Devoo.AsyncLoader

Sample View Code

 // Plain Text Async
 @Html.LoadAsync(() => "Plain Text")

 
 // Autorefresh async text
 // Each second an ajax call will be made to reload the new string
 @Html.LoadAsync(() => "Current Time: " + DateTime.Now.ToString(), TimeSpan.FromSeconds(1))
 
 // Delayed load of the async string
 @Html.LoadAsync(() =>
                {
                    Thread.Sleep(2000);
                    return "After slow function you get the result...";
                })