-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathLargeImage.aspx
More file actions
19 lines (18 loc) · 872 Bytes
/
Copy pathLargeImage.aspx
File metadata and controls
19 lines (18 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="LargeImage.aspx.vb" Inherits="LargeImage" %>
<%@ Register TagPrefix="user" TagName="NoMasterCSS" Src="~/UserControls/Front/NoMasterCSS.ascx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="border: none;">
<head runat="server">
<user:NoMasterCSS ID="UC_NoMasterCSS" runat="server" />
<title></title>
</head>
<body style="border: none; text-align: center;">
<div>
<form id="frmLargeImage" runat="server">
<asp:ScriptManager ID="scrManager" runat="server">
</asp:ScriptManager>
<user:ImageViewer ID="UC_ImageView" runat="server" LargeViewClickable="False" AllowShrinking="True" />
</form>
</div>
</body>
</html>