Ancora spostamento timers vari in tab config

This commit is contained in:
2024-06-14 09:18:36 +02:00
parent 53c8620be0
commit bd2ea7dab0
13 changed files with 230 additions and 203 deletions
+17
View File
@@ -4,6 +4,7 @@ using NKC_SDK;
using SteamWare;
using System;
using System.Collections.Generic;
using System.Web;
namespace NKC_WF
{
@@ -58,6 +59,22 @@ namespace NKC_WF
}
}
/// <summary>
/// pagina corrente...
/// </summary>
public string currPage
{
get
{
string url = HttpContext.Current.Request.Url.PathAndQuery;
if (url.Contains("?"))
{
url = url.Substring(0, url.IndexOf("?"));
}
return url;
}
}
#endregion Public Properties
#region Public Methods