Browse by Tags

All Tags » ASP.NET (RSS)

Certified ASP.NET 3.5!

I completely forgot as I did this in beta 3 months ago… that was a surprise this morning to get a notification that I earned the Microsoft Certified Technology Specialist: .NET Framework 3.5, ASP.NET Application Development competency (exam 70-562). Certifications...
Posted by pluginbaby | with no comments
Filed under: ,

[Cool Tool] Zeta Resource Editor

Following my Resource Refactoring Tool post, Uwe pointed me to Zeta Resource Editor . This very nice free win app allows you to easily edit your resx files, each language in the same row! Download link: http://www.codeproject.com/KB/aspnet/ZetaResourceEditor...
Posted by pluginbaby | 4 comment(s)
Filed under: ,

Load a txt file in a TextBox

Here is a very simple piece of C# code to load a text file in a TextBox. Typical use to display a disclaimer [Update 1: added using statement for the StreamReader] protected void Page_Load( object sender, EventArgs e) { if (!Page.IsPostBack) { using ...
Posted by pluginbaby | 3 comment(s)
Filed under:

[Cool Tool] VS Resource Refactoring Tool

The recently opened Visual Studio Gallery contains some free hidden Microsoft gems, Resource Refactoring Tool is one of them. Resource Refactoring Tool provides developers an easy way to extract hard coded strings from the code to resource files. It works...
Posted by pluginbaby | 5 comment(s)
Filed under: , ,

ASP.NET 3.5 hosters list

Brad Abrams has a nice list of ASP.NET 3.5 hosters, check it out!
Posted by pluginbaby | 1 comment(s)
Filed under:

Free Microsoft Press E-Books!

Good deal: 3 free e-books from Microsoft Press! Go to http://csna01.libredigital.com/?urvs5cn3s8 sign with your Windows Live ID and get the full complete books free chapters and the full complete LINQ book! Introducing Microsoft LINQ by Paolo Pialorsi...

How to set ASP.NET controls adapter by code ?

In a recently job I wanted to package as much as possible common items of the web layer (WebControls, BasePage, HttpHandlers, Js, Css, etc...) in a class library project, so I can share the dll across several ASP.NET apps. As I use the CSS Friendly Control...
Posted by pluginbaby | with no comments
Filed under: ,

Learning ASP.NET (links to resources)

People often ask me where to find resources to learn ASP.NET I must say that I learnt almost EVERYTHING from the QuickStart Tutorials : http://quickstarts.asp.net/QuickStartv20/aspnet/Default.aspx These tutorials are very good and shows every features...

Expression Web and Custom Controls

In case you wonder how Expression Web deals with custom ASP.NET controls, there are 2 things to notice : Having the control assembly into the \bin directory will not give you any design time rendering in Expression Web. Expression Web do not support custom...

JavaScript onLoad event clashing

This week I had to debug some asp.net pages that has a weird behavior. They work well but each time a Js alert() raise, the hover menu are no more available (it is a classic asp:menu with dynamic hover for sub-menu). The problem was simple: the current...
More Posts Next page »