You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
539 B

using System;
namespace Swift.web.AccountReport.DailySettlemetReport
{
public partial class DailySettlementRpt : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
startDate.Attributes.Add("readonly", "readonly");
startDate.Text = DateTime.Now.ToString("d");
toDate.Attributes.Add("readonly", "readonly");
toDate.Text = DateTime.Now.ToString("d");
}
}
}
}