Enterprise Library

The Microsoft Enterprise Library is a collection of reusable software components (application blocks) designed to assist software developers with common enterprise development cross-cutting concerns (such as logging, validation, data access, exception handling, and many others). Application blocks are a type of guidance; they are provided as source code, test cases, and documentation that can be used “as is,” extended, or modified by developers to use on complex, enterprise-level line-of-business development projects.

Continue Reading

Code Translation for .NET (C#<->VB.NET)

This service will translate the code for you, just start typing the code or upload a file to convert it. For now it only supports from VB.NET to C# and from C# to VB.NET. To use it you can either: Start typing your code. Copy and Paste the code in the Code Text Box. Translate an entire file using the file upload. Disclaimer: No copy is done whatsoever of the code that you either type, or upload for translation. Everything is processed in the server in memory and returned immediately to the browser. If you want to give feedback on …

Continue Reading

Highcharts .Net (with vb sample)

Highcharts .Net is a charts library written in pure javascript, offering an easy way to add complex charts to your Web application. Highcharts .Net encapsulates the Highcharts API on ASP.net controls making it easier to use. Project page at codeplex: http://highcharts.codeplex.com You can see some Highcharts.Net examples at this link: http://highcharts.paulovich.com.br/ Install: After download the newest release, add it as reference on your web application, and then add it to the page controls on your web.config: After that, you only need to import the jQuery script. it’s ready to use 😉 aspx: VB Sample:

Continue Reading

ASP.NET GoogleMaps User Control

GoogleMaps.Subgurim.NET is the most advanced Google Maps control for ASP.NET 2.0. Making available the full power of the official GoogleMaps API, yet without the need of a single line of javascript code: you code only in ASP.NET! To get going, you just drag the control from the toolbox onto the Visual Studio design surface, and with a few lines of code you will be able program powerful Google Maps applications! http://en.googlemaps.subgurim.net

Continue Reading

.NET Framework 4 Chart Controls

You can now download Visual Studio 2010 projects that contain all the samples targeting .NET Framework 4. The samples environment for Microsoft Chart Controls for .NET Framework contains over 200 samples for both ASP.NET and Windows Forms. The samples cover every major feature in Chart Controls for .NET Framework. They enable you to see the Chart controls in action as well as use the code as templates for your own web and windows applications. The samples environments each contains a Getting Started section to help you start using the Chart controls quickly. The samples demonstrates how to use the following …

Continue Reading

Asp.net menu control not working on Google Chrome

To solve this you will need to tell .net the capabilities of the browser. For .net 2.0 & above you need to create a new browers file with the capabilities and upload it to your server. In VS2008 Solution Explorer right click your application and add the “ASP.Net Folder” App_Browsers if you don’t already have it. Add a New “Browser File” item to this special folder and call it safari.browser (if fixing the problem for Chrome) Delete all the default stuff VS put in this file and replace it with the following: <browsers> <browser refID=”safari1plus”> <controlAdapters> <adapter controlType=”System.Web.UI.WebControls.Menu” adapterType=”” /> …

Continue Reading