Search

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

Matching Posts

  • Re: Url rewriting using web.sitemap

    I create a custom SQL SiteMapProvider that uses URL rewriting in my latest book, http://www.amazon.com/gp/product/0470187581?ie=UTF8&tag=extremewebwor-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470187581 You can get the latest source code on CodePlex.com http://thebeerhouse.codeplex.com/SourceControl/ListDownloadableCommits.aspx
    Posted to Web Forms (Forum) by docluv on 11/25/2009
  • Re: Training Advice needed - ColdFusin/SQL Server programmer moving to ASP.NEt

    First I would say to walk through as many of the tutorials on this site as you can. Nothing trumps real experience. Now to pimp my first book, http://www.amazon.com/gp/product/0470010010?ie=UTF8&tag=extremewebwor-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470010010 The target audience for the book is developers who are new to ASP.NET. I walks you through each of the controls available as of 2.0 (which is just about all of them except the ListView from 3.5) as well
  • Re: hiding and showing asp.net controls with jquery

    Inline scripts are problematic on several levels, primarily performance. So inline scripts with the binding syntax can create many more problems than it is worth. I reccomend selecting elements either through a CSS class name or a regular expression, http://professionalaspnet.com/archive/2009/10/07/Selecting-ASP.NET-Web-Controls-in-JQuery.aspx
    Posted to Client Side Web Development (Forum) by docluv on 11/24/2009
  • Re: Update Panel Issue

    The Update Panel does not speed things up, but rather fakes things for the user to create a falst sense of responsiveness. It actually adds overhead to your page. I demonstrated this in a blog post. http://professionalaspnet.com/archive/2009/01/30/The-ASP.NET-Diet-Part-1-_1320_-Making-a-Thin-Contact-Form.aspx My suggestion is to learn to use real AJAX without the Update Panel. You will be better off in the long run anyway by doing this.
    Posted to ASP.NET AJAX UI (Forum) by docluv on 11/24/2009
  • Re: ADO.NET Entity Framework vs Dataset desinger

    The other two answers are good. I wanted to add that besides Datasets being an older way of doing things, they are resource hogs compared to using entities and generic lists. I switched about 5 years ago and have not looked back since. EF solves a lot of relationship problems or at least makes things much easier, especially when you throw LINQ in the mix.
    Posted to ASP.NET MVC (Forum) by docluv on 11/24/2009
  • Re: Dynamic ToolTip

    http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
    Posted to Getting Started (Forum) by docluv on 11/24/2009
  • Re: Creating a webtest in VSTS 2008

    I don''t think it is included with that edition :( You are going to need to upgrade. I think you will need at least the Test editon, http://www.microsoft.com/visualstudio/en-us/products/teamsystem/default.mspx . I really love the web tests, I hate they are not included with the developer version. I think the reason is most enterprise shops want that in the hands of their QA or ALM team, not developers, which I think is a fundamental flaw. Oh well...
  • Re: Type 'BasePage' is not defined

    You did not upload the TBHBll.dll. That is the class library project that is also part of the web site.
    Posted to TheBeerHouse Starter Kit (Forum) by docluv on 11/24/2009
  • Re: Url Routing Server Load

    If you have set things up for extensionless URLs, ie http://mydomain.com/home instead of http://mydomain.com/home.aspx then yes. You have to route all requests through the ASP.NET engine to ensure the actual ASP.NET components get processed by ASP.NET. By using extensionless URLs then all the images, js and css file requests require the full ASP.NET page life cyle be exectuted. One thing I would reccomend is using something like images.mydomain.com to serve images or static for static files like
    Posted to Web Forms (Forum) by docluv on 11/23/2009
  • Re: asp.net 2.0 and c# 3.5

    No I think you would have to compile the dll as a 2.0 level. I know the CLR is the same version, but that does not really work from my experience.
    Posted to Configuration and Deployment (Forum) by docluv on 11/20/2009
Page 1 of 199 (1982 items) 1 2 3 4 5 Next > ... Last »