HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RMourik/bassol.nl/wwwroot/CMSFormControls/Inputs/AgeRangeSelector.ascx.cs
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using CMS.FormControls;


public partial class CMSFormControls_Inputs_AgeRangeSelector : FormEngineUserControl
{
    public override object Value
    {
        get
        {
            return txtBetween.Text + ";" + txtDays.Text;
        }
        set
        {
            string str = value as String;
            if (str != null)
            {
                string[] strs = str.Split(';');
                if (strs.Length == 2)
                {
                    txtBetween.Text = strs[0];
                    txtDays.Text = strs[1];
                }
            }
        }
    }


    protected void Page_Load(object sender, EventArgs e)
    {
    }
}