Laurent Duveau

Silverlight Expert and Trainer

Receive Email Updates

RunAtServer Blogs

Browse by Tags

All Tags » ASP.NET (RSS)
Microsoft Certified Professional Developer: ASP.NET 3.5
Back from vacation I’ve just received an email to say I earn my Microsoft Certified Professional Developer: ASP.NET Developer 3.5 certification (70-564), which I took in beta back in November 08. As an MCT that gives me the opportunity to teach more Microsoft...
ASP.NET Dynamic Data: Customize a template field
Following my first post on ASP.NET Dynamic Data , I want to show you that you can customize existing fields used by Dynamic Data very easily. With the Northwind db, here is the generated edit screen for the Employees table:   We could make this default...
Customizing ASP.NET Dynamic Data
From Wikipedia: “ ASP.NET Dynamic Data is a web application scaffolding framework from Microsoft , shipped as an extension to ASP.NET , that can be used to build data driven web applications. ” So if you use VS2008 and .NET 3.5 SP1 you can take advantage...
ASP.NET Dynamic Data Web projects templates
Since Visual Studio 2008 SP1 you may have noticed 2 projects template for dynamic data: So what is the difference ? Dynamic Data Web Site / Dynamic Data Web Application: Uses a LINQ to SQL model and LinqDataSource controls. Dynamic Data Entities Web Site...
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...
[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...
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. using System.IO; if (!Page.IsPostBack) { StreamReader StreamReader1 = new StreamReader (Server.MapPath( "disclaimer.txt" )); txtDisclaimer...
Posted: mars 02 2008, 06:51 by Laurent Duveau
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...
ASP.NET 3.5 hosters list
Brad Abrams has a nice list of ASP.NET 3.5 hosters, check it out!
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! Introducing Microsoft LINQ by Paolo Pialorsi and Marco Russo Introducing Microsoft ASP.NET...
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...
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...
.NET Framework 3.5 Common Namespaces and Types Poster
It is available to download and print: http://www.microsoft.com/downloads/details.aspx?familyid=7B645F3A-6D22-4548-A0D8-C2A27E1917F8&displaylang=en
More Posts Next page »