Search

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

Matching Posts

  • Re: IIS 7 Config question

    I modified my c:\windows\system32\inetsrv\config\applicationHost.config with the following: < section name= "handlers" overrideModeDefault= "Allow" /> < section name= "modules" allowDefinition= "MachineToApplication" overrideModeDefault= "Allow" /> This eliminated the 500.19 errors, but know I'm getting the following 404.3 error about MIME types. Am I really supposed to be modifying my config files and adding MIME types just to get an ASP.NET app to run on IIS7. It works fine on IIS6
  • Re: IIS 7 Config question

    I have the same issue with Vista/IIS 7. I found this article http://www.iis.net/default.aspx?tabid=2&subtabid=25&i=948&p=1 which indicates I need to unlock the handlers section of my %windir%\system32\inetsrv\applicationHost.config file, but I can't find a applicationHost.config file on my system.
  • Re: Solution Template?

    Thank you. That is exactly what I was looking for. Kristin
    Posted to Visual Studio 2005 (Forum) by KristinLaura on 1/31/2006
  • Re: ASP.net templates/project types didn't install...

    Try selecting File | New Web Site instead of File | New Project . You should see ASP.NET Web Site, ASP.NET Web Service, Personal Web Site Starter Kit, and Empty Web.
    Posted to Visual Studio 2005 (Forum) by KristinLaura on 1/26/2006
  • Solution Template?

    I have created a solution with 4 projects: Aspects, DataLayer, BusinessLayer and WebSite. This is the structure we use for all our web applications. Is it possible to create a solution template that would include all 4 projects? From what I can tell, it looks like each project would need to be it's own template, but that wouldn't save me much time. Thanks -- Kristin
    Posted to Visual Studio 2005 (Forum) by KristinLaura on 1/26/2006
  • Re: A Slight Change

    It was in the child page. But this is what I ended up with and it works nicely. In MasterPage.master: <head runat="server"> <title>Untitled Page</title> <meta id="MetaKeywords" name="keywords" runat="server" content="" /> <meta id="MetaDescription" name="description" runat="server" content="" /> </head> In the MasterPage.master.vb Public WriteOnly Property Keywords() As String Set(ByVal value As String) Me.MetaKeywords.Content = value End Set End Property Public
  • Re: A Slight Change

    I tried adding the properties to my master page, and then changing the values via the content page (I simply cut and paste the posted code). I get the error: 'MetaDescription' is not a member of 'System.Web.UI.MasterPage' on the content page. Any ideas? Thanks!
Page 1 of 1 (7 items)