Search

You searched for the word(s): userid:718796

Matching Posts

  • Re: Architecture patterns in the DAL

    Rich, if you haven't already, i'd urge you to look at the gof ( gang of four ) material, as well as the excellent (and very simplified) ' head first c# '. of course, martin fowler needs a look in too. many of these patterns are employed in the TBH architecture (take the singleton pattern in the DAL instance provider as an example) and you'll start to recognise them and where to use them with repeated exposure (actually just remembered another nice little title judith bishop -
    Posted to TheBeerHouse Starter Kit (Forum) by jimibt on 5/8/2009
  • Re: Codesmith (or similar) templates for TBH architecture

    [quote user="rargie"] Thanks chaps, I'll give it a try. I had a crack at writing codesmith templates anyway, with mixed results. I'd be interested if anyone had some that they would be willing to share, specifically ones that handle the provider class (e.g. PhotoProvider.cs) and provider implementation class (e.g. SqlPhotoProvider.cs) where there are multiple tables involved (e.g. if I want a photo app with albums and comments, like the 'Articles' in the Beerhouse example
    Posted to TheBeerHouse Starter Kit (Forum) by jimibt on 5/6/2009
  • Re: Codesmith (or similar) templates for TBH architecture

    yes rich, as lee mentioned, you can try the flixon site generator which is a direct tbh architecture set of templates. i've been looking after the enhancements and new functionality of it for quite some time. you can read about the latest version on his very forum here: Announce: Flixon Site Generator V2 now available enjoy...
    Posted to TheBeerHouse Starter Kit (Forum) by jimibt on 5/3/2009
  • Re: ASP.net gzip compression using Response.Filter not working

    this works for me: <%@ Application Language="C#" %> <%@ Import Namespace="System.IO" %> <%@ Import Namespace="System.IO.Compression" %> <script RunAt="server"> protected void Application_PreRequestHandlerExecute( object sender, EventArgs e) { HttpCompress((HttpApplication)sender); } private void HttpCompress(HttpApplication app) { string acceptEncoding = app.Request.Headers[ "Accept-Encoding" ]; Stream prevUncompressedStream
    Posted to HttpHandlers and HttpModules (Forum) by jimibt on 4/25/2009
  • Re: Which layer of 3 tier architecture should implement caching?

    just to throw a spanner in the works. i cache in the BLL. why?? because if you're using the provider model, you don't want to be totally reinventing the wheel for every new data access component that you need to use, plus caching at the the object model level means that disparate sources that make up that model are already in a single place, rather than having to pull them all together from the data object layer(s). just my tuppence worth and how i've been using it sucessfully for the
    Posted to Architecture (Forum) by jimibt on 4/20/2009
  • Re: HOWTO: Run and keep a timer running in your ASP.NET website?

    Andrew, yes, that code will function perfectly well, tho of course, you'll have a bit of 'collision' detection coding to do in tha background as it's possible that certain operations could 'hang' or take some time to complete. So the possibility exists for a transaction to be invoked whilst it's currently still running (or hung). Just worth bearing in mind. I'd also (if going down this route) extend the timer object and add it to a keyed dictionary (or similar construct
    Posted to Architecture (Forum) by jimibt on 4/20/2009
  • Re: How to decide which desing pattern should i use for CMS website.

    +1 for thebeerhouse. a very extensible kit and a great architecture to boot.
    Posted to Architecture (Forum) by jimibt on 4/9/2009
  • Re: widget & runtime error

    Rachel, glad i was able to perversely lead you to a solution, IE certainly has a peculiar way of doing things. shame that it's still fairly dominant in the browser useage stats still. should be fun when css v3 appears, along with any new versions of javascript. I'll check out that article as well... cheers
    Posted to TheBeerHouse Starter Kit (Forum) by jimibt on 3/30/2009
  • Re: widget & runtime error

    RaeKC, I can't supply a remedy for your specific case but i can tell you that it 'could be' releted to postbacks and javascript's page.init method. i've hit the same issue myself when using a combo of jquery (which i LOVE) and telerik Radcontrols (i also LOVE those!! ). on pages where both are independednt, then all is fine. on pages where there is a mixed mode of both, then it can be irratic. i still haven't got to the bottom of it and as it hasn't been a showstopper
    Posted to TheBeerHouse Starter Kit (Forum) by jimibt on 3/28/2009
  • Re: gridview

    this is the strangest necro-post/ 'thread' hijack that i've seen for quite some time!!
    Posted to Architecture (Forum) by jimibt on 3/26/2009
Page 1 of 19 (185 items) 1 2 3 4 5 Next > ... Last »