0
我正在使用java script
解析Date
對象到web服務,如下所示。asmx webservice問題日期對象
HRA_Create.HelloWorld(new Date("2013-07-08 00:00:00"));
但是當我在asmx WebMethod
,顯示檢查此Date
爲7/7/2013 6:00:00 PM
。
我調試我的應用程序,看到如下的值。
Debug.WriteLine(dt.ToString());
什麼可能是錯誤?我該如何解決這個問題?
[WebMethod]
public string HelloWorld(DateTime dt)
{
Debug.WriteLine(dt.ToString());
return dt.ToString();
}
Java腳本
<script type="text/javascript">
function callServer() {
HRA_Create.HelloWorld(new Date("2013-07-08 00:00:00"));
}
</script>
的ScriptManager
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="~/HRA_Create.asmx" />
</Services>
</asp:ScriptManager>
的Java腳本調用
<a href="javascript:callServer()">Call Server</a>
日期都不同,你可能想檢查你的代碼,這不是格式問題。 –
@Nil抱歉。我的複製粘貼問題。我已更新我的帖子。返回值是'7/7/2013 6:00:00 PM'。 – Bishan
2013-07-08和7/7/2013是不同的,這是正確的嗎? –