Search found 3 matches
- Mon Nov 24, 2008 11:08 am
- Forum: .NET
- Topic: Bug in WebChart when IPv6
- Replies: 4
- Views: 4455
Hello, The "::"-chars are located in the UserHostAddress, and the code there does only clean out "." and not ":". Look at Context.Request.UserHostAddress.ToString().Replace(".", "") The parse line (.Replace(":", "")). is executed on timeStamp not the UserHostAddress. See: Context.Request.UserHostAdd...
- Fri Nov 21, 2008 1:07 pm
- Forum: .NET
- Topic: Bug in WebChart when IPv6
- Replies: 4
- Views: 4455
I took a look at TeeChart source code (WebChart.cs, method CreatePictureFile) The file name is build with this code: string fileRoot = ID.ToString() + Context.Request.UserHostAddress.ToString().Replace(".", "") + timeStamp.Replace(",", "").Replace("/", "").Replace(":", "").Replace(" ", "").Replace("...
- Fri Nov 21, 2008 9:24 am
- Forum: .NET
- Topic: Bug in WebChart when IPv6
- Replies: 4
- Views: 4455
Bug in WebChart when IPv6
Hi, I always get a System.NotSupportedException when I open a ASP site containing a WebChart (v2). The TempChart property is set to File and the registry values "ShareFolder" and "VirtualShare" are OK . When I start the web application in Visual Studio 2005 in debug mode everything works fine. The f...