+1  A: 

If label1 is a non-static variable in the WebApplication1._Default class then you cannot access it from a static context. Either LabelDict needs to be non-static or label1 needs to be made static. Probably the latter.

John Kugelman