Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. if (Request["iframe"] != null)
  2. {
  3. return PartialView("_Foo");
  4. }
  5. else
  6. {
  7. return View();
  8. }
  9.  
  10. @if (Request["iframe"] != null)
  11. {
  12. Layout = null;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement