Files
NKC/NKC_WF/MachineUnload.aspx
T
2019-09-16 12:39:56 +02:00

49 lines
1.7 KiB
Plaintext

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="MachineUnload.aspx.cs" Inherits="NKC_WF.MachineUnload" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<asp:UpdatePanel runat="server" ID="uplTavola">
<ContentTemplate>
<asp:Timer runat="server" ID="timReloadCss" Interval="1000" ></asp:Timer>
<link href="getDynCss" rel="stylesheet" />
</ContentTemplate>
</asp:UpdatePanel>
<%--
<div id="uplTavola">
<link href="getDynCss" rel="stylesheet" id="dynCss" />
</div>
<script type="text/javascript">
setInterval("my_function();", 1000);
function my_function() {
$('#uplTavola').load(location.href + ' #dynCss');
}
</script>--%>
<asp:UpdatePanel runat="server" ID="upnlDrawings">
<ContentTemplate>
<div class="row">
<div class="col-2">
<div style="width: 200px; height: 200px;">
<svg viewBox='0 0 105 93' xmlns='http://www.w3.org/2000/svg'>
<path id="IT000006" d='M66,0h39v93zM38,0h-38v93zM52,35l25,58h-16l-8-18h-18z' fill='#ED1C24' />
</svg>
</div>
</div>
<div class="col-8">
<svg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg' runat="server" id="svgTable">
</svg>
<%--<object type="image/svg+xml" data="Images/test.svg">
</object>--%>
</div>
<div class="col-2">
<%--<svg>
<rect x="10" y="10" width="50" height="50" fill="blue" id="IT000007" />
<rect x="25" y="25" width="50" height="50" fill="orange" id="IT000008" />
</svg>--%>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>