Files
MoonPro.net/MP-ADM/WebUserControls/cmp_ST_preview.ascx.cs
T
2021-01-04 17:56:27 +01:00

44 lines
920 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MP_ADM.WebUserControls
{
public partial class cmp_ST_preview : BaseUserControl
{
#region Public Properties
public int IdxST
{
get
{
int answ = 0;
int.TryParse(hfIdxST.Value, out answ);
return answ;
}
set
{
hfIdxST.Value = $"{value}";
repGroup.DataBind();
}
}
#endregion Public Properties
#region Protected Methods
protected void lbtDoEdit_Click(object sender, EventArgs e)
{
raiseNewVal();
}
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion Protected Methods
}
}