BACKUP DATABASE
is a SQL Server command. You are connecting to an MS Access database.
To backup an Access database, you just need to copy the database file.
string sourceFile = @"F:\dipti\Data\ERPDB.accdb";
string destinationFile = @"E:\database\" + dbname + "_" + dd + ".bak";
System.IO.File.Copy(sourceFile, destinationFile, overwrite: true);