Adam Beal BizTalk, .NET 2.0, and More

<July 2008>
SuMoTuWeThFrSa
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789


Navigation

BizTalk Blogs

Dev Sites

Subscriptions

Post Categories



ASP.NET 2.0 (RSS)

.NET Tool Time Part 2

Here are a few new tools that I have been using over the past few months which are all very useful. Thanks to my colleague Neil Schulman for recommending ReSharper which is a C# refactoring and intelligent code assisting tool which integrates with Visual Studio 2005. ReSharper is great for showing where errors exist in your code and pointing out where optimizations can be made. ReSharper also has extended Visual Studio intellisense capabilities which alone are worth the install. I personally love the closing brace identifier feature which highlights the closing or opening brace for any that you click on.

Another tool I have been using to assist with my BizTalk SFTP adapter work has been FileZilla. Many of you may already be familiar with this handy opensource FTP utility which provides the ability to do SFTP transfers as well!

Thanks to Marina for recommending SmartAssembly which looks to be a useful .NET obfuscation tool although I haven't yet given it a try :)

posted Saturday, August 12, 2006 1:43 PM by adambeal with 2 Comments

.NET Tool Time

Over the past few weeks we have been experimenting with several new or newly discovered development tools where I work. At the top of my list is Roland Weigelt’s GhostDoc, which I found one day while watching a podcast. It has been a great success here and has saved us all lots of time away from tedious xml comment authoring.  GhostDoc has VS 2003 and VS 2005 versions that you can download, install, and run side by side. To use just right click a method or property and choose “Document This” and watch as the xml comments are generated. Of course you still must review these for accuracy and clean up any mistakes.

Another really neat tool we have been experimenting with is CruiseControl. Billed as a framework for a continuous build process this is a wrapper tool for controlling your entire build and deployment process. You can set it up to pull your code from source control and then call out to your build tool for compilation whether it be Nant, MSBuild, or a variety of others. You can also have conditional emails sent to notify you of build events.

Finally I would like to say that all developers need a desktop search tool such as Google Desktop or MSN Desktop search. Both of these tools will take a few hours to index your machine but afterwards you will have instant as you type search capability of your hard drive files and all emails! These tools are must haves and blow away the worthless built in windows search tool in my opinion.

The best thing about all of these tools is they are all absolutely free! If you have tools that your shop loves feel free to post them here.

posted Tuesday, January 31, 2006 9:15 PM by adambeal with 0 Comments

Google Adsense Search in an ASP.NET Page

Tonight I tried to add Google's AdSense search code to the right nav area on my site. According to the Google AdSense site all I should have to do is paste the google script code in my page. The problem was that Google's script is an HTML form.
This obviously didn't work because of the problems with nested form tags in an ASP.NET page. Here is how I ended up getting around this. I moved the above code into it's own html file you can view here. Then in my right nav ascx file I included the following iframe code which loads the html page in the frame and allows the form to post as intended:

<IFRAME name=SearchFrame src="pt_google_search.htm" frameBorder=0 width="98%" scrolling=no height=112>
    <a href="pt_google_search.htm">Search Page</a>
</IFRAME>

This is also a useful technique to use with some PayPal scripts which run in an HTML form.

posted Friday, December 16, 2005 10:30 PM by adambeal with 11 Comments




Powered by Dot Net Junkies, by Telligent Systems