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 } }