JavaScriptSerializer UTC DateTime issues

Our client wanted to show the date and time values in the browser exactly as they are in the database, and we are storing them as UTC in the database. At first we had some problems with the serialization and Javascript side. The DateTime values got shifted twice - at first to match the local time zone of the machine and then to match the time zone in the browser. We fixed it by adding a custo

JavaScriptSerializer UTC DateTime问题

我们的客户希望在浏览器中显示日期和时间值,完全像它们在数据库中一样,并且我们将它们作为UTC存储在数据库中。 起初,我们在序列化和Javascript方面遇到了一些问题。 DateTime值被移位两次 - 首先匹配机器的本地时区,然后匹配浏览器中的时区。 我们通过向JavaScriptSerializer添加自定义Converter来修复它。 我们将DateTime标记为Serialize覆盖中的DateTimeKind.Utc。 将数据从Serialize中反馈出来有点困难,但我们发现

Json ISO Date not deserialized as DateTime object

I am creating a multiplatform application that works on .net/mono and uses Newtonsoft.Json to serialize information. All worked well until I tried to send information between the machines with exactly the same version of Newtonsoft.Json.dll. What turned out it that dates were properly serialized in the ISO format like that: "2013-02-08T12:11:39Z" , but when I try to deserialize them

Json ISO Date不反序列化为DateTime对象

我正在创建一个适用于.net / mono的多平台应用程序,并使用Newtonsoft.Json序列化信息。 一直运行良好,直到我试图发送具有完全相同版本的Newtonsoft.Json.dll的机器之间的信息。 事实证明,日期在ISO格式中被正确序列化为: “2013-02-08T12:11:39Z” ,但是当我尝试在Mac OS上反序列化它们时,我得到一个字符串而不是DateTime对象! 我使用串行器设置做了一些实验: private static readonly JsonSerializerSettings jso

DateTimeConverter converting from UTC string

I have a date serialized as a string "2012-06-20T13:19:59.1091122Z" Using the DateTimeConverter, this gets converted to a DateTime object {22:49:59.1091122} with the Kind property set to "Local". eg. The following test fails: private static readonly DateTime UtcDate = new DateTime(634757951991091122, DateTimeKind.Utc); private const string UtcSerialisedDate = "20

DateTimeConverter从UTC字符串转换而来

我有一个日期序列化为字符串“2012-06-20T13:19:59.1091122Z” 使用DateTimeConverter,将其转换为Kind属性设置为“Local”的DateTime对象{22:49:59.1091122}。 例如。 以下测试失败: private static readonly DateTime UtcDate = new DateTime(634757951991091122, DateTimeKind.Utc); private const string UtcSerialisedDate = "2012-06-20T13:19:59.1091122Z"; [Test] public void DateTimeConverter

Roundtrip XML Serialization of DateTime and xsd:date?

OK, what am I missing here? MSDN says the following with regard to DateTimeSerializationMode: In versions 2.0 and later of the .Net Framework, with this property set to RoundtripDateTime objects are examined to determine whether they are in the local, UTC or an unspecified time zone, and are serialized in such a way that this information is preserved. This is the default behavior and is recom

DateTime和xsd:date的往返XML序列化?

好的,我在这里错过了什么? MSDN说DateTimeSerializationMode的以下内容: 在.Net Framework的2.0及更高版本中,将此属性设置为RoundtripDateTime对象,以检查它们是否位于本地,UTC或未指定时区,并且以保留此信息的方式进行序列化。 这是默认行为,推荐用于不与旧版本框架进行通信的所有新应用程序。 然而: namespace ConsoleApplication1 { public class DateSerTest { [XmlElement(DataType = "date")]

How Do I Serialize DateTime Objects in .NET in a Standards Compliant Way

My goal is use the .NET DateTime object (in C#) and have that be serialized to and parsed from a string (for use in XML) in a way that is standards compliant. The specific standard I have in mind is the ISO 8601 standard for representing dates and times. I want an easy to use solution (preferably, one method call each way) that will convert to and from the concatenated version of the format.

如何以符合标准的方式在.NET中序列化DateTime对象

我的目标是使用.NET DateTime对象(使用C#),并以符合标准的方式将其序列化为字符串(用于XML)并进行语法分析。 我想到的具体标准是代表日期和时间的ISO 8601标准。 我想要一个易于使用的解决方案(最好是每种方法调用一个方法),它将转换为格式的连接版本并从中转换。 我也想保留本地时区信息。 下面是我想要得到的那种字符串的例子: 2009-04-15T10:55:03.0174-05:00 我的目标.NET版本是3.5。 几年前,我发

How to add folder to assembly search path at runtime in .NET?

My DLLs are loaded by a third-party application, which we can not customize. My assemblies have to be located in their own folder. I can not put them into GAC (my application has a requirement to be deployed using XCOPY). When the root DLL tries to load resource or type from another DLL (in the same folder), the loading fails (FileNotFound). Is it possible to add the folder where my DLLs are

如何在运行时在.NET中将文件夹添加到程序集搜索路径中?

我的DLL由第三方应用程序加载,我们无法自定义。 我的程序集必须位于它们自己的文件夹中。 我无法将它们放入GAC(我的应用程序需要使用XCOPY进行部署)。 当根DLL尝试从另一个DLL(在同一文件夹中)加载资源或类型时,加载失败(FileNotFound)。 是否可以通过编程方式(从根DLL)将我的DLL所在的文件夹添加到程序集搜索路径中? 我不允许更改应用程序的配置文件。 听起来你可以使用AppDomain.AssemblyResolve事件并手动

SQL Server LDAP authentication

使用SQL Server 2005,如何使用NET对非AD LDAP服务器验证用户名/密码对? If calling from SQL Server 2005, you'll need to create a .NET stored procedure. Using .NET to connect to LDAP: http://msdn.microsoft.com/en-us/library/system.directoryservices.aspx using System.DirectoryServices; DirectoryEntry DE = new DirectoryEntry(LDAPPath, LDAP_Domain + account, password, AuthenticationTypes.Secur

SQL Server LDAP认证

使用SQL Server 2005,如何使用NET对非AD LDAP服务器验证用户名/密码对? 如果从SQL Server 2005调用,则需要创建一个.NET存储过程。 使用.NET连接到LDAP: http://msdn.microsoft.com/en-us/library/system.directoryservices.aspx using System.DirectoryServices; DirectoryEntry DE = new DirectoryEntry(LDAPPath, LDAP_Domain + account, password, AuthenticationTypes.Secure); if (DE == null) { // Login fai

Why does log4net 1.2.10 require System.Web?

I'm writing this code in a Console Application targeting the .NET Framework 4 Client Profile. this.container.AddFacility<LoggingFacility>( f => f.LogUsing(LoggerImplementation.Log4net)); When it runs, it fails with a type conversion error. Could not convert from 'Castle.Services.Logging.Log4netIntegration.Log4netFactory,Castle.Services.Logging.Log4netIntegration,Version=2.5

为什么log4net 1.2.10需要System.Web?

我正在以.NET Framework 4 Client Profile为目标的控制台应用程序中编写此代码。 this.container.AddFacility<LoggingFacility>( f => f.LogUsing(LoggerImplementation.Log4net)); 运行时,它会因类型转换错误而失败。 无法从'Castle.Services.Logging.Log4netIntegration.Log4netFactory,Castle.Services.Logging.Log4netIntegration,Version = 2.5.1.0,Culture = neutral,PublicKeyToken = 407dd0808d

Issue with Query String Parameter Length. Http Error 400

Can anyone please tell me issue with my URL:- http://www.advantarealty.net/Search//Condo,Single-Family-Home,Townhome_PropertyType/True_ForMap/8_Zoom/-81.3043212890625T29.099376992628493,-80.88134765625T28.9120147012556,-80.826416015625T28.41555985166584,-81.1669921875T28.033197847676377,-81.6888427734375T28.033197847676377,-82.1392822265625T28.222130007158537,-82.2601318359375T28.584521719370418,

问题与查询字符串参数长度。 HTTP错误400

谁能告诉我问题与我的网址: - http://www.advantarealty.net/Search//Condo,Single-Family-Home,Townhome_PropertyType/True_ForMap/8_Zoom/-81.3043212890625T29.099376992628493,-80.88134765625T28.9120147012556, -80.826416015625T28.41555985166584,-81.1669921875T28.033197847676377,-81.6888427734375T28.033197847676377,-82.1392822265625T28.222130007158537,-82.2601318359375T28.584521719370418,-82.1612

WebBrowser memory problem

I have a .NET application that needs uses a WebBrowser to automatically navigate through a bunch of pages. But if I go to, for instance, Google and set Google Instant on, and then search anything and navigate manually through the next button several times, the memory used by my application will start increasing. The problem might be that Google Instant is somehow keeping data from previous pag

WebBrowser内存问题

我有一个.NET应用程序需要使用WebBrowser来自动浏览一堆页面。 但是,如果我访问Google并设置Google即搜即得,然后搜索任何内容并通过下一个按钮多次手动导航,则我的应用程序使用的内存将开始增加。 问题可能在于Google即时以某种方式保留了以前页面的数据,但即使在我导航到其他地方(例如“about:blank”)后,所用的内存也不会减少。 IE 9也会出现这个问题。我开始写下我在第60页使用的内存,这是我得到的(使用IE 9):