为什么代码会将环境中的异常从另一个环境中抛出

时间:2014-02-18 17:02:35

标签: c# asp.net-mvc iis

我在我的本地iis中部署asp mvc web应用程序确实正常工作,但是当我移动到另一个iis开始抛出之前没有抛出的异常时,我不知道配置是否有匹配。

  DateTime date_deb = DateTime.ParseExact(_date_deb, "dd/MM/yyyy", null);
  DateTime date_fin = DateTime.ParseExact(_date_fin, "dd/MM/yyyy", null);
  

[FormatException:String未被识别为有效的DateTime。]        System.DateTimeParse.ParseExact(String s,String format,DateTimeFormatInfo dtfi,
       DateTimeStyles样式)+3200706        System.DateTime.ParseExact(String s,String format,IFormatProvider provider)+31

//其他例外

IList<object[]> bilansMois = session.CreateSQLQuery(sql).List<object[]>();
 bilansMois[0].Count() != 0
  

[ArgumentOutOfRangeException:索引超出范围。一定是   非负面和更少        比收集的大小。        参数名称:index]        System.ThrowHelper.ThrowArgumentOutOfRangeException()+ 72         System.Collections.Generic.List`1.get_Item(Int32 index)+9593284

1 个答案:

答案 0 :(得分:0)

服务器设置为什么位置?,似乎您以错误的格式传递日期时间以便IIS识别