Search

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

Matching Posts

  • Compilation starts each time I request a page (hosting Asp.Net runtime)

    Hi, I'm hosting the runtime in order to run my Asp.Net requests in-process. I create an AppDomain with hosting environment using System.Web.Hosting.ApplicationHost.CreateApplicationHost(..) The problem is, each time I create a new AppDomain, my site (or at least the top-level folder) is recompiled. This is very annoying since I often do a small change in another project (say, business logic), and I have to wait several minutes in order to run one test. So, I started digging with Reflector, and
    Posted to Web Forms (Forum) by ulu on 7/24/2009
  • Re: Compilation starts each time I request a page (hosting Asp.Net runtime)

    Thanks for the suggestion, but what I should be looking for?
    Posted to Web Forms (Forum) by ulu on 7/24/2009
  • Re: DB before the egg?

    I'm using NHibernate ORM tool for talking to my database. This way, I can model my entities first, and then create the database schema automatically. As my design evolves, so does the database. If later I discover some performance issues with the schema, I'm free to modify it without touching the code. I'm using SQLite for automated tests (which I perform with the help of Ivonna , TypeMock Isolator , and MbUnit ). Later, then a certain feature is complete, I'd test it manually, using
    Posted to Architecture (Forum) by ulu on 7/24/2009
  • Re: Ivonna, an Asp.Net unit testing tool, version 1.2.0 is released

    Dear Tatworth, Ivonna is developed on .Net 2.0 (the latest version uses extension methods but I made it compatible with the 2.0), and should work with any version of VS 2005 and 2008. If it doesn't, please let me know. I'm using it both in my VB and C# projects with almost equal ease (the only annoyance of VB being that it doesn't support anonymous delegates, but I rarely need them). Sample VB and C# tests are included in the installation. As for the pricing and discounts, this should
    Posted to Announcements (Forum) by ulu on 12/2/2008
  • Ivonna, an Asp.Net unit testing tool, version 1.2.0 is released

    Ivonna is an Asp.Net testing tool that allows writing unit tests for your WebForms applications. What makes it different is that Ivonna runs in the same process as the test runner. Unlike other testing tools, Ivonna is not a "client-side" tool. It doesn't just test the HTML output (although such a possibility exists), it creates and runs an Asp.Net request and allows you to examine the intrinsic objects, such as the Page object. This opens many new possibilities, such as Examining properties
    Posted to Announcements (Forum) by ulu on 11/28/2008
    Filed under: Testing, Tool, asp.net
  • Re: Update GridView date field in dd/MM/yyyy

    Protected Sub grid_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) e.NewValues("TheDate") = Convert.ToDateTime(e.NewValues("TheDate"), System.Globalization.CultureInfo.CurrentCulture) End Sub
    Posted to Data Presentation Controls (Forum) by ulu on 11/10/2008
  • Convince me!

    Hi, I've been reading many posts about the benefits of MVC from the people I respect. However, I'm still hesitating. Below I'm giving some of my doubts. Please don't consider this as a post flaming MVC, I'm quite ignorant and perhaps misunderstanding some important points. I'm writing this because I'd like to have a more clear picture. Perhaps many of my misunderstandings come from the classic ASP hell. So, here's why I haven't switched to MVC yet. Fixed design
    Posted to ASP.NET MVC (Forum) by ulu on 10/22/2008
    Filed under: asp mvc webforms, advice
  • Re: issue tracker for ASP.NET 2.0

    What's the download Url?
    Posted to Issue Tracker Starter Kit (Forum) by ulu on 7/12/2008
  • Phew is released

    Yesterday I uploaded the first version of Phew , a small command line utility for Asp.Net page precompilation. You can get more information at the corresponding page, but briefly, Phew is created in order to shorten the TDD cycle: you can recompile just one page rather than the whole site. As a bonus, you can have your App_Code classes recompiled as well, which is quite useful when you are developing such a class. Phew goes great with Ivonna , an Asp.Net unit testing tool. Phew is available in the
    Posted to Announcements (Forum) by ulu on 7/12/2008
  • Re: It appears that your menu dll is out of sync with your script file

    When you turn on module chaching, the structure of the module changes. The PortalModuleBase loads a copy of itself from the cache into itself. The parent's ID property is set in the Skin's InjectModule method, but I've found that the child's ID property is never set (I still use DNN 3.2), so it can raise problems (for example, you can't find local resource files). The error above comes from spmenu.js, line number 373 in my case, anyway it's the definition of SolpartMenu.prototype.GenerateSubMenus
    Posted to DotNetNuke (Forum) by ulu on 6/24/2006
Page 1 of 2 (18 items) 1 2 Next >