Search

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

Matching Posts

  • Re: How To Enter License Key On VS 2008 Pro Trial?

    Registering the product will not give you the option to enter a product key. You need to run the setup program and enter the product key in there (you don't need to reinstall - just enter a valid product key). See http://msdn.microsoft.com/en-us/library/cc442563.aspx for instructions.
    Posted to Visual Studio 2008 (Forum) by e2canoe on 7/7/2009
  • Re: Remove Decimal Places From Currency Format

    If you use multiple cultures in your app, you might want to use the following to instantiate the NumberFormatInfo so that the current culture is used (instead of just constructing one with 'new'): System.Globalization. NumberFormatInfo nfi = (System.Globalization. NumberFormatInfo )System.Globalization. NumberFormatInfo .CurrentInfo.Clone();
    Posted to Classifieds Starter Kit (Forum) by e2canoe on 5/2/2008
    Filed under: string.format currency decimals culture
  • Determine whether being data-bound or not?

    I have implement an ASCX for data entry. The ASCX is used in two places in my app: 1) part of an ASPX page, or 2) as an edit form that is dynamically created when a user edits or inserts a record in a grid. I need to implement different logic depending on whether the ASCX has been included in an ASPX page or whether it is being used in a grid. I was hoping the difference to detect would be whether the ASCX is data-bound or not but can't figure out how to tell from within the ASCX whether it is
    Posted to Web Forms (Forum) by e2canoe on 3/18/2008
    Filed under: data binding user control
  • Re: Error: Sys.ArgumentException: Value must not be null for Controls and Behaviors.

    Thanks for the post! Solved my problem too. I replaced by <!-- --> comments with <%-- --> comment blocks instead. Since <%-- --> comments are not rendered it solved my problem.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by e2canoe on 3/1/2008
    Filed under: Value must not be null for Controls and Behaviors
  • Re: Weird application root path problem

    [quote user="dotnetbohn"]Is this nested in your head tag and does your head tag have the runat="server" attribute set?[/quote] That was it! Thanks. The enclosing <head> tag must also be runat=server.
    Posted to Web Forms (Forum) by e2canoe on 2/18/2008
    Filed under: link head tilde
  • Weird application root path problem

    I'm sure I've done this before - adding a runat="server" tag to an HTML <link> tag so that the href attribute gets parsed by ASP to fixup the tilde (~). Like this: < link href ="~/cioscripts/css/base.css" media ="screen, print" rel ="stylesheet" type ="text/css" runat ="server" /> Well, guess what, in a current project of mine the above renders to this! < link href ="~/cioscripts/css/base.css" media ="screen
    Posted to Web Forms (Forum) by e2canoe on 2/13/2008
    Filed under: tilde root link
  • User Control's Class?

    I've done this in VS2005 without any problems and now cannot do it in VS2008... I've created a UserControl (.ascx) and am loading it dynamically in other pages of my website using LoadControl("foobar.ascx"). Usually I just assign to a variable of the type of the user control's base class (System.Web.UI.UserControl) but now I need to cast to the user control's specific type (foobar). I did it in VS2005 website projects but nothing seems to work in VS2008. I've tried looking
    Posted to Visual Studio 2008 (Forum) by e2canoe on 2/4/2008
    Filed under: user control loadcontrol
  • Placing resources in a DLL?

    I'm trying to place strings (en and fr) into a DLL separate from my website. I want this so that they can be used by another, related website. My problem is that I see that the resx.cs that is generated makes the resource class and accessors "internal". This would mean that I would have to make my website a "friend" of my resource DLL to access the resources. How do I do that (make website a friend of the DLL)? Or, better yet, how do I make the resources available to any other
    Posted to Localization (Forum) by e2canoe on 1/31/2008
  • Refactoring (renaming class) not working

    I am trying to refactor an aspx page class that has an embedded class in it (just a simple class for encapsulating some data that I keep in session state). All I want to do is rename it (lots of references in the aspx and aspx.cs file!) but cannot! I get error "Unable to apply code changes to file [...]results-resultats.aspx" The project compiles and runs fine. I've tried closing the aspx file (in case it was a open file related bug) but no luck. Any ideas? I'm revamping a big web
    Posted to Visual Studio 2008 (Forum) by e2canoe on 1/30/2008
    Filed under: refactoring renaming
  • Re: Slow file saves!

    OK, so I just added a new web form to my project. VS2008 was unresponsive for about 2 minutes while the disk was thashing like crazy. Then I was able to edit my new form but disk was sill very busy for another 2-3 minutes. devenv.exe was at between 5-10% cpu during the initial 2 minutes. It's as if some sort of process is performing some operation that needs to access each file in my solution - I have 37,000 files spread across 8,000 folders. Ya, I know that is a LOT. I'll try experimenting
    Posted to Visual Studio 2008 (Forum) by e2canoe on 1/22/2008
Page 1 of 10 (93 items) 1 2 3 4 5 Next > ... Last »