ImageView.cshtml 533 B

12345678910111213141516
  1. 
  2. @{
  3. ViewBag.Title = "ImageView";
  4. Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
  5. }
  6. <script>
  7. $(function () {
  8. var id = getQueryString('id');
  9. var type = getQueryString('type');
  10. $('#imgview').attr({ src: '/Problem/ViewProblemImage?id=' + id + "&type=" + type });
  11. });
  12. </script>
  13. <img modal="zoomImg" id="imgview" style="width:100%; height:100%" />
  14. <link href="~/Content/Scripts/plugins/imgsize/boxImg.css" rel="stylesheet" />
  15. <script src="~/Content/Scripts/plugins/imgsize/boxImg.js"></script>