Files
NKC/NKC_WF/MachineUnload.aspx
T
Samuele E. Locatelli 2e078c00e4 Esempio svg colorato
2019-09-12 11:57:46 +02:00

17 lines
522 B
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">
<style>
#my-rect {
fill: green;
}
#my-rect2 {
fill: yellow;
}
</style>
<svg>
<rect x="10" y="10" width="50" height="50" fill="red" id="my-rect" />
<rect x="25" y="25" width="50" height="50" fill="red" id="my-rect2" />
</svg>
</asp:Content>