DCSIMG

 Subscribe in a reader

.NET Framework - Guy kolbis

Browse by Tags

All Tags » .NET Framework (RSS)
One of the classic problems with database applications is refreshing stale data. In a nutshell, Query Notification allows you to cache data and be notified when the data has been changed in SQL Server. Upon notification, you can then refresh your cache or take whatever action you need to. In the following screen cast I will examine the capabilities of the notification services using the SqlDependency class. You can download the sample code from here . You can download the screen cast from here .
נשלח על ידי kolbis | 1 תגובה/ות
I published the Code Review Add-In to CodePlex as a new project and to the CodeProject . You can download the sources here . You can read an "HOWTO" and "About" article for the Add-In here . I would love to know if there is some functionality that you would like to add to the Add-In and I would really love for anyone to help me contribute and improve the Add-In.
Here is a question that I have been asked a lot. "How can you simulate a scenario where a user logon once to the web site and performs several tests?" Let me explain the problem. If your web site uses authentication such as Form authentication, the user must logon to the site before he can perform any actions. That means that any test you create will have to logon to the site before performing the actual test case. The issue about it is that for each test case you create, you continue testing the...
Here is a new add-in for Visual Studio 2005 I have been working on. The Code Review Add-In helps the process of reviewing code and publishing the results as work items to the Team System Server for team members to review them. I attached the installation file and "howto" document. At the moment I am not adding the source code, however let me know if you want it. It is free to use and download. I hope you will find it useful :)
Sealed is pretty powerful modifier in .Net. However I don't think that everyone understands the true essence of it. I want to emphasize the meaning of the sealed modifier. The sealed modifier can be applied to classes, instance methods and properties. The sealed modifier in a class declaration is used to prevent inheritance of the class: sealed class SealedClass { public int x; public int y; } A sealed method overrides a method in a base class, but itself cannot be overridden further in any derived...
נשלח על ידי kolbis | 3 תגובה/ות
Recently I visited Toronto for Beta release of software I designed. As always with Beta versions, we encountered several problems. The One I want to share with you is related to the CAS and Sandboxed applications. We had an executable located in a shared location on the intranet. An application tried executing it from the local computer....and BOWWWW. We got permission exception flying everywhere. So, after reviewing it for a while and googling it, here is what I came up with. I had to use the caspol...
נשלח על ידי kolbis | 1 תגובה/ות