예제 #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        CLSCommon.CommonCheckSession();
        CLSCommon.ClientCheckSessionClient();
        CLSCommon.CACheckSession();
        if (!IsPostBack)
        {
            ddlMismatchType.Visible = false;
        }
        GetGSTr2Count();
        ScriptManager _scriptMan = ScriptManager.GetCurrent(this);

        _scriptMan.AsyncPostBackTimeout = 36000;
    }
예제 #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     CLSCommon.CommonCheckSession();
     CLSCommon.ClientCheckSessionClient();
     if (!IsPostBack)
     {
         GetGSTIN();
         DataSet ds1 = CLSCommon.CallApiGet("api/ImportTaxPayerData/FillMonthYear?Ind=1");
         foreach (GridViewRow grw in grdRegisteredGSTIN.Rows)
         {
             DropDownList ddlMonth = (DropDownList)grw.FindControl("ddlMonth");
             FillDdl(ddlMonth, ds1);
         }
     }
 }