I got an interesting bug report today. I have a DispatcherTimer whose Tick calls an EventHandler which contains a Stop() method call.This stops the timer on the platforms we use in development (Windo
I have a SelectionChanged event in class A that I want to relay through class B. I assumed that declaring a SelectionChanged event in class B and assigning this EventHandler to A.SelectionChanged woul
If I understand correctly with our deployments most code gets compiled on the workstation, and the aspx/ascx files get compiled on first access on the server. Is there anyway to precompile these?
I have a feeling that this is a code smell, and I could be doing this better, and if that is the case please point it out.
I have used the KEYWORD dynamic and it is only available in .net 4.0 but I have to roll-back to a .net 3.5 server. I can not use KEYWORD dynamic anymore and need to convert it to work with .net 3.5.I
I have an assembly and some classes. What I\'m trying to do is create an instance of a class and fill its p开发者_高级运维roperties in a generic way, something like:
I\'m having problems converting time from Lo开发者_StackOverflow社区ndon (UTC/UTC+1) to US Eastern Time (UTC-5/UTC-4).
I don\'t want the user to wait for page completing the sending processes, so I\'m thought of using SendAsync in ASP.NET 3.5. But for after debuging, I found that the Main Thread still waits.
I have added a few public properties to my already created class. When I call this class in another place the newly added properties are not showing, and when I go to the definition w开发者_JAVA百科it
I\'m trying to enable sorting for my gridview without AJAX, and having difficulty because when I call sorting it is running PageLoad again and never开发者_Python百科 fires the Sorting event.