Show.cshtml 366 B

1234567891011121314
  1. @{
  2. Layout = "~/Views/Shared/_Layout.cshtml";
  3. }
  4. <div style="text-align:center;">
  5. <img src="" id="show-img" style="max-height:450px; max-width:500px;" alt="" />
  6. </div>
  7. @section scripts{
  8. <script type="text/javascript">
  9. var dialog = top.dialog.get(window);
  10. var data = dialog.data;
  11. $("#show-img").attr('src', data);
  12. </script>
  13. }