Created
January 16, 2012 13:45
-
-
Save deanhume/1620940 to your computer and use it in GitHub Desktop.
Async Controller - IndexCompleted()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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