Search

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

Matching Posts

  • Re: ASP.Net Development Server and Fiddler Integration

    I had the same problem. I used Fiddler's "ReverseProxy" capability to resolve it. (see ReverseProxy ) Here's what I did: Find Fiddler's "CustomRules.js" ( it's probably in My Documents/Fiddler2/Scripts ) Make a backup copy of it Find the "OnBeforeRequest" function, and insert this statement at the very top: if (oSession.host.toLowerCase().match("^fiddler")) oSession.host = oSession.host.replace("fiddler","localhost"); Then
    Posted to Visual Studio 2008 (Forum) by grundt on 12/19/2008
  • Re: VS 2008 & Code Analysis - .NET

    I don't know whether you can export/import settings, but it's easy enough to do it manually ... configure one of your projects close Visual Studio and open (with notepad) that project file (xxx.csproj) find the element named "CodeAnalysisRules" copy it to your other project files
    Posted to Visual Studio 2008 (Forum) by grundt on 11/10/2008
  • Re: locking solutions explorer against drag and drop

    Excellent question ... You're not alone, I've accidentally done it on many occasions (sometime without even realizing it) and it's a real pain. Plus, I can't think of a single instance when I've had the need to do it intentionally
    Posted to Visual Studio 2008 (Forum) by grundt on 9/19/2008
  • Re: Debug loading Dlls extremely slow

    There's a web.config setting that, by default, causes "batch" compilations of controls. See: compilation Element (batch, batchTimeout settings). I haven't quite figured out what constitutes a "batch" ... it's apparent that folder structure, if not the determining factor, plays some role. In my case, setting batch to false dramatically reduced the quantity of compilations performed at startup (which you can measure by counting the number of "xxx.compiled"
    Posted to Visual Studio 2008 (Forum) by grundt on 8/29/2008
  • Re: Debug loading Dlls extremely slow

    I have the same experience. As a workaround, I've found that the debugger seems to start much faster if I open my website outside of the debugger, once (after each recompile), prior to trying to start in debug-mode. ( I'm guessing that it has something to do with loading up static classes and initializing the application cache )
    Posted to Visual Studio 2008 (Forum) by grundt on 7/14/2008
  • Re: How to debug SQL with VS.net 2008?

    I tried the previous suggestion, and it seemed like it was going to work ... but when I started the debug session, the breakpoint icon in the sp changed from a solid red circle, to an empty red circle with an info icon .. with the message "The breakpoint will not currently be hit. No symbols have been loaded for this document"
    Posted to Visual Studio 2008 (Forum) by grundt on 7/11/2008
  • Re: debugging not working in vs2008 project

    [quote user="pkellner"]make sure you are running vs2008 as admin (problem from a long time ago)[/quote] I don't know which problem is being referred to, but I can assure you that you do not have to run vs2008 as admin, to debug
    Posted to Visual Studio 2008 (Forum) by grundt on 6/16/2008
  • Re: Generation of designer file failed

    For a work-around to this problem ( to re-generate the designer file ), see this post: Re: Controls not added to designer.cs
    Posted to Visual Studio 2008 (Forum) by grundt on 5/18/2008
  • Re: controls not added to designer.cs

    Thanks Shrini ... that's a nice work-around, and interestingly, it also changes the runtime version from 2.0.50727.42 to 2.0.50727.1433 ( presuming, of course, that it was 2.0.50727.42 to begin with )
    Posted to Visual Studio 2008 (Forum) by grundt on 5/18/2008
  • Re: controls not added to designer.cs

    Kyma, That's some great detective work. We too ... do not inherit directly from System.Web.UI.UserControl have a namespace that includes "Controls" ( your 2nd post indicates that you no longer think that's the problem, but maybe it is related ) I have not noticed the "Generation of designer file failed: The method or operation is not implemented." error (is it an error or a warning ?) mentioned in your first post, but I'll watch for it next time, and update the post
    Posted to Visual Studio 2008 (Forum) by grundt on 4/21/2008
Page 1 of 3 (25 items) 1 2 3 Next >