我只是在比较两个日期。
C#
string args = string.Format("'{0}','{1}'
,(DateTime)System.Data.SqlTypes.SqlDateTime.MaxValue
, DateTime.Now);
add.OnClientClick = String.Format("JSFunctn1({0}); return false;", args);
Js File:
JSFunctn1(maxDate, currentDate)
{
alert(maxDate);
alert(currentDate); // Both Dates displayed properly
if (currentDate >= maxDate) {
alert("error"); //IT Comes here
}
任何人都可以告诉我哪里错了,它不应该进入循环,因为最大日期是12/31/9999 12:00:00 AM
答案 0 :(得分:0)
我怀疑问题在于你是在比较字符串而不是日期。
在客户端上尝试:
testwebsite/.htaccess