20 lines
411 B
C#
20 lines
411 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace NKC_WF
|
|
{
|
|
public partial class MachineUnload : System.Web.UI.Page
|
|
{
|
|
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |