我想在我的asp.net网站上使用C ++库。我不知道如何制作一个.dll库并让它工作。我尝试制作一个DLL并将其导入asp.net。我是否需要在c ++代码中执行某些操作才能使用dll?
答案 0 :(得分:1)
您可以使用:
split_time = update_time.split(':');
h = split_time[0]; m = split_time[1]; s = split_time[2];
if(s > 0)
{
s = s-1;
}
else if(s == 0)
{
s = 59;
if(m != 0)
{
m = m-1;
}
else
{
m = 59;
h = h - 1;
}
}
else if(m == 0)
{
s = s-1;
m = 59;
h = h-1
}
if(s <10)
{
s = '0'+s;
}
if(m.length == 1 && m <10)
{
m = '0'+m;
}
if(h < 10 && h.length == 1)
{
h = '0'+$.trim(h);
}
if(m==0 && h==0 && s == 0)
{
update_time = time;
}
update_time = h+ ':' + m + ':' + s;
return update_time;