Guest User

Untitled

a guest
Jan 19th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public ActionResult RemoveCache(Guid product_Id)
  2. {
  3. var url = Url.Action("ProductPreview", "Common", new { product_Id = product_Id });
  4. HttpResponse.RemoveOutputCacheItem(url);
  5. return RedirectToAction("Index");
  6. }
  7.  
  8. @Html.Action("Login", "Account", true)
Add Comment
Please, Sign In to add comment