by Mikael Henriksson
1. September 2009 02:33
When your browser gives you http 500 error while trying to connect to a web service it’s usually because you forgot to add a little something in the web config. <configuration>
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>...
[More]
by Mikael Henriksson
26. August 2009 14:43
First of all we set up a DFS (Distributed File System) because having to copy the website files from Team City to two or three servers is a pain in the a**. Now we only copy the files to one server and it is synchronized with the others but hey what if you need to change something in the IIS manager...
[More]
by Mikael Henriksson
14. June 2009 20:45
I just recently had a threading issue in asp.net believe it or not. The issue was that IIS didn’t like the instance variables on the page so sometimes it was shared between different visitors. So removing the instance variables in asp.net means I had to pass classes and parameters around. I en...
[More]
a7fd484e-39f6-40e1-8853-3a6654a5add2|0|.0
Tags:
ASP.NET
by Mikael Henriksson
27. January 2009 18:59
I was searching around on the net for a way to display Hierarchical Data with nested repeaters. Found some quite extensive ways to solve this simple problem. Then someone (sorry for not remembering the url) had come up with a much easier way of doing this.
I'll start with the way I want it displaye...
[More]