For example, I want to show a jQuery dialog after insert or edit a record in Action, in webform I can use the follow way to register js script to the page:
page.RegisterStartupScript(key, "<script language='javascript' defer>" + script + "</script>");
but this doesn't work in MVC, so how can I do this?
thanks!