How to check if DLL is compiled as 32-bit or 64-bit?
Open visual studio command prompt. Use this command: dumpbin /headers C:\path\name.dll At the very beginning, you will find “FILE HEADER VALUES”, the first value will […]
Open visual studio command prompt. Use this command: dumpbin /headers C:\path\name.dll At the very beginning, you will find “FILE HEADER VALUES”, the first value will […]
A few days back I developed an ISAPI filter and when I installed it on the IIS server and tried to test it was not […]
I downloaded the Windows 8 Developer Preview from http://msdn.microsoft.com/en-us/windows/home/ and tried to install on Virtual PC, but got the following error. Your PC ran in to […]
Xdebug is a very popular PHP extension that helps with debugging and profiling of PHP scripts by providing a lot of valuable debug information. Microsoft WebMatrix is a […]
Use overload Response.Redirect(String url, bool endResponse) if using in try catch block.
It’s really easy to call REST based web services from C#.Net. Let’s see how to do it. We’ll be calling Yahoo Web Services as an example […]
The .NET Framework provides excellent support for XML. Combined with the databinding support of WinForms and ASP.NET applications you have an easy and powerful set of tools. ASP.NET 2.0 takes databinding another step further by providing the DataSource control which lets you declaratively provide data access to data-bound UI controls.
Develop a consequence for each quality standard and evaluate it as a regular part of your project postmortem.
When designing an application or database, also consider other scenarios and pros and cons of the approach being adopted, not only one scenario. In other words if one approach is solving your problem then also consider what other problems we can face due to it, and prepare for those as well.