I am using MVC4 Ajax.ActionLink for binding or updating Partial View
@Ajax.ActionLink("Link","Action","Controller" , new {id = @Id}, new AjaxOptions { HttpMethod="Post",UpdateTargetId="dvUpdateId", OnSuccess = "scsFunctions"})
Now issue is if I try to open link by right clicking open link in New Tab or New Windows than I have following two Issues.
(1)In New Tab or New Window it is only return Partial View. So other part of Page is disappears.
(2)It Will Never call Onsuccess function and like others functions. In above code OnSuccess we define to call "scsFunctions" which will never call . So the Scripts which we have written inside function will never execute.
Help me with proper solutions....