protected void Import_Click(object sender, EventArgs e)
    {
        if (txtRemark.Text != "")
        {
            ImportHitRateBasedPaymentProcess m_import = new ImportHitRateBasedPaymentProcess(dbConn, Session.SessionID, WebUtils.GetCurUser(Session).UserID);
            m_import.Remark = txtRemark.Text;
            WebUtils.StartFunction(Session, FUNCTION_CODE);
            m_import.ImportToDatabase();
            WebUtils.EndFunction(dbConn);

            PageErrors.getErrors(db, Page).addError(HROne.Translation.PageMessage.IMPORT_SUCCESSFUL);
        }
        else
        {
            PageErrors.getErrors(db, Page).addError("Please input batch remarks");
        }
    }