Skip to content

Instantly share code, notes, and snippets.

@deanhume
Created January 16, 2012 13:45
Show Gist options
  • Save deanhume/1620940 to your computer and use it in GitHub Desktop.
Save deanhume/1620940 to your computer and use it in GitHub Desktop.
Async Controller - IndexCompleted()
public ActionResult IndexCompleted(string data, string moredata)
{
Operations translations = new Operations {FirstOperation = data, SecondOperation = moredata};
return View(translations);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment