Basically Im building an ASP.NET MVC Application. I have a search page. Its searches for results from a number of different sources. To aid in the speed of page load I decided to load the results from one source first then to dynamically load more results as it finishes searching other sources.
So far I have the first set of results returned and an Ajax.ActionLink working which renders a partial view in a div which shows results from a second source. However obviously I have to click on the actionLink to get the it to work.
What Im wondering is how to a use the actionlink to fire on page load so the further results arrive automatically? can i rewrite the actionlink in javascript/jquery and fire it on page load or what is the best practice for this kind of thing?