20 lines
401 B
C#
20 lines
401 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace NKC_WF
|
|
{
|
|
public partial class MachineUnload : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
string filename = Server.MapPath("~/Images/test.svg");
|
|
string answ = File.ReadAllText(filename);
|
|
svgTable.InnerHtml = answ;
|
|
}
|
|
|
|
protected void timReloadCss_Tick(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |