in

All Tags » C# (RSS)

Browse by Tags

  • My Speaker Idol Experience

    On November 3rd, I participate to the Speaker Idol with Louis-Philippe Pinsonneault, my co-worker and 5 other participants. The Speaker Idol was hosted by the Montreal .NET Community in collaboration with . The main objective was to give the possibility to everyone who wishes to become a presenter to...
    Posted to Bruno Pelletier (Weblog) by bpelletier on 11-17-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
Page 1 of 1 (2 items)
Powered by Community Server (Commercial Edition), by Telligent Systems