Tag: asp.net

  • My first bug catch with WatiN

    I caught my first bug (regression) because of WatiN and NUnit just now. Something I wasn't able to catch during my previous manual tests. [more] Two items that I run into but got over with: 1. AJAX (UpdatePanel). I show/hide controls with AJAX and previously finding elements by id had some issues if it's hidden…

  • Minimum Permission Required for Assembly

    A jumpstart on security your applications by determining and applying only the minimum required permissions. [more] I ran into this thread on Resetting your web application or web site without recycling app pool or IIS. just recently. The basic idea of the first option for achieving its goal is to call "HttpRuntime.UnloadAppDomain();". Interestingly there's a…

  • Wrox Blox – Professional ASP.NET 3.5 Upgrade

    I’ll hopefully (likely) be taking the ASP.NET 3.5 MCTS beta exam this week and though I’m quite aware that there are more than enough articles and videos in the web to review for the exam I just felt like treating myself to this wrox blox Professional ASP.NET 3.5 Upgrade. These are [more]selected chapters in their…

  • Unit Testing ASP.NET

    I was looking googling around the web for unit testing strategies for ASP.NET (UI/Presentation Layer) and posting some partial notes. ASP.NET MVC Framework is something to look forward too. It is still in Preview 2 but pointing to a good direction. In addition, if I'm not mistaken however it can only be used with Web…

  • Source Code of Projects from Microsoft ASP.NET Team Now On CodePlex

    A little after I posted about my picks on CodePlex I came across a new project names "ASP.NET". Hmmm, what could it be? Checking it out, it was the new project created that "gives you access to the code for upcoming releases that the Microsoft ASP.NET team is working on, starting with the ASP.NET MVC…

  • ASP.NET 3.5 MCTS Beta Exam

    In connection with a previous post of mine on ADO.NET 3.5 beta exam availability, ASP.NET 3.5 beta exams also runs on the same beta period. 71-562: TS: Microsoft .NET 3.5, ASP.NET Application Development Promo Code: 562B1  Preparation Guide : http://www.microsoft.com/learning/exams/70-562.mspx  Some video tutorials here especially on new features for 3.5 and of course http://www.asp.net Exam preparation information…

  • Multiselect WebCombo (Infragistics)

    As Infragistics webcombo (current latest is v7.3) doesn't directly support multiple selection yet as mentioned here I figured I'd post a work around I did while facing the same issue. Attaching a sample ASP.NET Website Project to this post  (see below) but basically it involves a checkbox column within the webcombo. [more] However, encountered a…

  • ASP.NET HttpRuntime Execution Timeout in debug mode

    Been sometime since I've posted something. We'll be moving over to another company but hopefully when things settle down I'll be able to post more. Anyways, while trying to debug a project, I tried to set the HttpRuntime ExecutionTimeout to a certain value. When a request reaches the server but takes more than the indicated…

  • Infragistics NetAdvantage for ASP.NET Issues

    Joined infragistics forums in Feb 21 2008 and I already have 5 posts, 3 of which has been unanswered. I've never really been a fan of 3rd party controls but had to use one for a project. Don't get me wrong, I'm impressed with the infragistics features in typical usage but it seems that when…

  • HTTP 403.9 – Access Forbidden: Too many users are connected

    I was trying to test multiple connections to my local IIS server when I got the http status/error code above. This is because there is a limit to the number of concurrent connections with Keep-Alive Enabled setting ON. http://www.experts-exchange.com/Web/Web_Servers/IIS/Q_20286298.html So I unchecked "HTTP Keep-Alive enabled" and the issue was resolved. But when I run/debug from…