ViewImg.cshtml 464 B

123456789101112131415
  1. 
  2. @{
  3. ViewBag.Title = "ViewImg";
  4. Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
  5. }
  6. <script>
  7. $(function () {
  8. @*$('#imgview').attr({ src: "@ViewBag.src" });*@
  9. $("#viewimg").attr("src", "@ViewBag.src");
  10. });
  11. </script>
  12. <img modal="zoomImg" id="viewimg" style="width:100%; height:100%" />
  13. <link href="~/Content/Scripts/plugins/imgsize/boxImg.css" rel="stylesheet" />
  14. <script src="~/Content/Scripts/plugins/imgsize/boxImg.js"></script>