ASP.NET

There are 5 entries for the tag ASP.NET
  • Buenos Aires Architect Forum

    Next friday an Architect Forum will be in Microsoft Argentina HQ. The main topic is about Agile Development. In this event Diego Gonzalez and me, will present a conference about Test-driven Development. If you want to attend it, send a mail to: v-sconde at microsoft dot com Technorati tags: Agile, Test-driven development

  • LiveMeeting conference: Introduction to ASP.NET

    Here you can download the presentation and samples (in spanish) of the online conference about Introduction to ASP.NET that I did today together with Daniel Seara. It was my second online event and the first with Daniel (AKA The Master), and was very good experience. Thanks to everyone who attended to this event, and specially to Miguel Saez for organize it. Technorati tags: ASP.NET

  • New Blog Engine

    Yesterday I have had an upgrade to the engine of this blog from .Text 0.95  to SubText 1.9.4. Subtext is a great evolution of .Text with more features and based on .NET Framework 2.0. Technorati tags: ASP.NET, Subtext

  • Google Analytics Module

    Some months ago Daniel Cazzulino publishes an excellent IHttpModule to use Google Analitycs with adding code in the pages of a web site. After using it some weeks I found an error that affects the Clearscreen CAPTCHA Antispam Control. Basically the problem is that the module adds the HTML code necessary to use Google Analytics in responses that are not HTML (like an image). This is quick fix to this bug: void OnBeginRequest(object sender, EventArgs e) {    if ( String.Compare("text/html", application.Response.ContentType, true) == 0           && ! ( application.Request.QueryString.Count != 0                && application.Request.QueryString.GetKey(0) == "hip" ) )       application.Response.Filter = new AnalyticsStream(application.Response.Filter, accountNumber); } Here you can download a...

  • Slides and samples of my last talk

    Here you can download the material (in spanish) of the presentation"Advance Web Development with ASP.NET" (Desarrollo Web Avanzado con ASP.NET) that I did in La Plata National University. Thanks to Fernanda Luna from Microsoft Universities for her helping organizing this event. Technorati tags: ASP.NET