Files
NKC/NKC_WF/site/SvgFull.aspx.cs
T
Samuele E. Locatelli 22f75947b9 Test zoom SVG
2020-07-28 16:23:01 +02:00

25 lines
645 B
C#

using Microsoft.Ajax.Utilities;
using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.site
{
public partial class SvgFull : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if(!Page.IsPostBack)
{
((SiteMaster)this.Master).showSearch = false;
// recupero valore URL ed imposto...
int sheetId = memLayer.ML.QSI("sheetId");
cmp_svgFull.SheetId = sheetId;
}
}
}
}