-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMultiMedia.aspx
More file actions
28 lines (26 loc) · 1.22 KB
/
Copy pathMultiMedia.aspx
File metadata and controls
28 lines (26 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="MultiMedia.aspx.vb" Inherits="MultiMedia" %>
<%@ Register TagPrefix="user" TagName="NoMasterCSS" Src="~/UserControls/Front/NoMasterCSS.ascx" %>
<!doctype html>
<html style="border: none;">
<head runat="server">
<user:NoMasterCSS ID="UC_NoMasterCSS" runat="server" />
<title></title>
</head>
<body style="border: none; text-align: center;padding-right: 50px; height: 100%;">
<form id="frmMediaPopup" runat="server" style="height: 100%;">
<asp:ScriptManager ID="scrManager" runat="server">
</asp:ScriptManager>
<asp:Repeater ID="rptMediaLinks" runat="server">
<ItemTemplate>
<div class="media_links">
<asp:Literal ID="litMediaLink" runat="server"></asp:Literal>
<asp:HyperLink Visible="false" CssClass="media_downloadlink" ID="lnkDownload" runat="server"
ToolTip="<%$ Resources:Media, ContentText_Download %>">
</asp:HyperLink>
</div>
</ItemTemplate>
</asp:Repeater>
<asp:PlaceHolder ID="phdInline" runat="server"></asp:PlaceHolder>
</form>
</body>
</html>