in

All Tags » ASP.NET (RSS)

Browse by Tags

  • 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 are not important for anyone, but for...
    Posted to Laurent Duveau (Weblog) by Anonymous on 07-16-2008
  • [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.aspx
    Posted to Laurent Duveau (Weblog) by Anonymous on 03-03-2008
  • 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.Text = StreamReader1.ReadToEnd(); StreamReader1...
    Posted to Laurent Duveau (Weblog) by Anonymous on 03-02-2008
  • [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 with C# and VB.Net in all project types that...
    Posted to Laurent Duveau (Weblog) by Anonymous on 03-02-2008
  • ASP.NET 3.5 hosters list

    Brad Abrams has a nice list of ASP.NET 3.5 hosters, check it out!
    Posted to Laurent Duveau (Weblog) by Anonymous on 02-03-2008
  • 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 AJAX by Dino Esposito Introducing Microsoft Silverlight...
    Posted to Laurent Duveau (Weblog) by Anonymous on 01-17-2008
  • Token Cache with ASP.NET and Basic Authentication

    If you develop an ASP.NET application that use Basic Authentication , take care to be sure to change the registry on your staging IIS server. What? Yes, If your application use role based security to securing your pages, adding a new security group to a Windows domain user don't automaticaly give...
    Posted to Dominic Sévigny (Weblog) by Anonymous on 01-04-2008
  • 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 Adapters to change the asp:menu rendering, I...
    Posted to Laurent Duveau (Weblog) by Anonymous on 12-11-2007
  • 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 of ASP.NET with code samples in C# and VB! The forums...
    Posted to Laurent Duveau (Weblog) by Anonymous on 11-29-2007
  • 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 controls into the Toolbox. Ok, that's not...
    Posted to Laurent Duveau (Weblog) by Anonymous on 11-18-2007
Page 1 of 2 (18 items) 1 2 Next >
Powered by Community Server (Commercial Edition), by Telligent Systems