Browse by Tags
All Tags »
Tools (
RSS)
First step: check if the assembly is really in the bin folder. It’s there but you still get the error? There might be few reasons for the framework to fail when trying to load your assembly. To find the real one you can use nice tool from MS, called “ Fuslogvw.exe ” which is assembly binding log viewer you can use for your .NET application (it’s auto installed with VS). After opening this tool, start your application and wait for the exception to be thrown. go back to the tool, hit the refresh to...
Visual Studio .NET Tips & Tricks is a very useful e-book you can download for free. Justifying its reputation, it contains a lot of useful tips and tricks about advanced using the IDE which makes coding much more comfortable and effective. I think that even experienced Visual Studio user will find it useful. Please note: even though it’s refers to the Visual Studio versions before the VS2008 it is still helpful as the most is the same across all the versions. As I mentioned before, it's for...
Debugging javascript over running website should not be a problem, as long as you're equipped with Firebug plug-in for Firefox. Just find the relevant script peace of code and insert new breakpoint. What if you don't have Firebug installed, or you need to debug the script specifically over Internet Explorer for some reason (e.g. no javascript error on FF, only with IE)? Nice trick is to use the " Web Development Helper " IE plug-in to achieve this. Just open its Script Console window...
Every web developer using Firefox might have Firebug plug-in installed. For the ones who uses Internet Explorer during the development there is similar tool that you probably already know, the "IE Developer Toolbar". It's very nice one but it is lacking a bit compared to Firebug. This post will talk about the " Web Development Helper " which is a complementary tool for IE web developers, developed by Nikhil Kothari . This tool introduce few helpful features, here is some of...