The Line and Polygon Measure tools do not display the comma on comma delimited systems.
上次发布: August 25, 2014No Product Found
漏洞 ID 编号
NIM041901
已提交
January 26, 2009
上次修改时间
June 5, 2024
适用范围
No Product Found
找到的版本
9.3
修正版本
N/A
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
As a fix/workaround – replace the following code in the ProcessMeasureRequest function in Measure.ascx.cs in the WMA Replace coll.Add(new CallbackResult("","","invoke","measureComplete", new object[] { response, m_id, area, perimeter, segmentDistance, totalDistance })); return coll.ToString(); with coll.Add(new CallbackResult("","","invoke","measureComplete", new object[] { response, m_id, area, string.Format("{0}", perimeter), string.Format("{0}", segmentDistance), string.Format("{0}", totalDistance) })); return coll.ToString(); If you could put this information inside the CR, that would help the developer who fixes it eventually and also a possible workaround for SP1.<a href="http://frenchfrie/french_internet/Default.aspx" target="_blank">http://frenchfrie/french_internet/Default.aspx</a>