Click here to Skip to main content
15,900,641 members

Comments by Mizanur Rahman (Top 6 by date)

Mizanur Rahman 2-Apr-17 23:55pm View    
internal string GenerateNewCode()
{
try
{
DateTime Today = DateTime.Today;
var Year = DateTime.Now.ToString("yyyy");
var Month = DateTime.Now.Month;
var Day = DateTime.Now.Day;

string InvoiceCode = null;
InvoiceCode = "SVR" + Year + "" + Month + "" + Day + 0 + GetCountTRNo(Today);
return InvoiceCode;
}
catch (Exception ex)
{
throw ex;
}
}

private string GetCountTRNo(DateTime Today)
{
try
{
string conn = ConfigurationManager.ConnectionStrings["ConnectionStrings"].ConnectionString;

DataAccessEX ado = new DataAccessEX();
int maxid = 0;
maxid = Int32.Parse(ado.AggRetrive("select COUNT(distinct Column) from DataTable where Data = '" + Today + "'", conn).ToString());
return (maxid + 1).ToString();
}
catch (Exception ex)
{
throw ex;
}
}
Mizanur Rahman 15-Oct-16 14:15pm View    
yes
Mizanur Rahman 22-Aug-16 0:51am View    
Sure
Mizanur Rahman 21-Aug-16 2:22am View    
yes i used full name of the server
but didn't work
Mizanur Rahman 21-Aug-16 1:57am View    
i am already created a database in azure