Search

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

Matching Posts

  • error MSB6006: "aspnet_compiler.exe" exited with code 1

    All of a sudden I am getting that compiler message - usually (for me) it's a duplicated class name, but no changes have been made - no new pages created... Under Tools - Options - Build and Run 'output verbosity' is set to Detailed, but all I get in the output window is:- ======================================================== Utility to precompile an ASP.NET application Copyright (C) Microsoft Corporation. All rights reserved. D:\Program Files\MSBuild\Microsoft\WebDeployment\v8.0\Microsoft
    Posted to Visual Studio 2005 (Forum) by gchq on 11/25/2009
  • Re: error MSB6006: "aspnet_compiler.exe" exited with code 1

    Turns out the compiler was causing the problem! Deleting the cache files and a re-boot sorted it out - and 50 odd 'there was an error in the compiler' files sent to MS for them to play with. Six hours banging my head for that! Sigh....
    Posted to Visual Studio 2005 (Forum) by gchq on 11/25/2009
  • Cookie not available in Application_AuthenticateRequest if new session

    As part of Application_AuthenticateRequest it needs to read a cookie. It would appear, though, that when it is determined that the session has ended the browser is re-writing the cookie at the same time AuthenticateRequest requires the cookie value. I'm only guessing this is what is happening. If so, is there any way to create a seperate cookie that would still be readable?
    Posted to State Management (Forum) by gchq on 10/10/2009
  • Re: Cookie not available in Application_AuthenticateRequest if new session

    But that still inserts the values into xxx@dominaname[x].txt If I debug locally it would appear to work (not easy since it relies on Domain Names) so the only thing that I am left to consider is the the new session is updating the cookie text file at the same moment a value is being requested and on a remote server that is enough time to prevent the value from being recovered - unless I'm missing something really obvious.... Also I am now guessing that the issue is to do with Session_Start not
    Posted to State Management (Forum) by gchq on 10/10/2009
  • Re: Cookie not available in Application_AuthenticateRequest if new session

    Found the problem - so simple, but what a pain! When a user first lands on the site the domain name determines whose site they are seeing (all database driven) - when they login the domain name changes to the same one (only one https certificate) so a QueryString identifies the site to display. It's when the session times out and they in a 'floating window' it gets tricky - the only way to identify which site they should be on is using a cookie (set when they login) - but part of the
    Posted to State Management (Forum) by gchq on 10/10/2009
  • Re: Tracking Session Timeout

    I'm part way there - using this code :- Public Function SessionTime(ByVal DivName As Panel) As String Dim vTime As String = "var sessionTimeout = 20; " & vbCr vTime += "function DisplaySessionTimeout()" & vbCr vTime += "{ " & vbCr 'assigning minutes left to session timeout to Label vTime += "document.getElementById('" & DivName.ClientID & "').innerText = sessionTimeout + "" Minutes remaining until session timeout
    Posted to Client Side Web Development (Forum) by gchq on 8/21/2009
  • Re: Tracking Session Timeout

    OK - here is the solution The JavaScript (held in a custom class) Public Function SessionTime(ByVal DivName As Panel) As String Dim vTime As String = "var sessionTimeout = 20; " & vbCr vTime += "function ReadCookie(cookieName) " & vbCr vTime += "{ " & vbCr vTime += "var theCookie=""""+document.cookie; var ind=theCookie.indexOf(cookieName); " & vbCr vTime += "if (ind==-1 || cookieName=="""") return
    Posted to Client Side Web Development (Forum) by gchq on 8/21/2009
  • Tracking Session Timeout

    Hi there The solution I'm looking for is a method of setting a JavaScript timer everytime there is a postback (partial or full) at the same time the asp.Net session timer is reset, then if it gets to 17mins throws up a warning box with a countdown from 3 mins. Inherent problems It's a very large application with several hundred files - the only way to organise was to place each page into an Ajax tab container held in a 'floating' div within the menu page - and there are several of
    Posted to Client Side Web Development (Forum) by gchq on 8/20/2009
  • Re: CSS related, please help!

    "...but are not reflected when I view the page in a browser locally." You may be viewing the cached version click Refresh or Ctrl - F5
    Posted to Client Side Web Development (Forum) by gchq on 8/20/2009
  • Re: Maintaining session between domains

    It's the same app - same webspace - same server - same directory - several domain names point to the same server, so it could be domain_one dot com/DirSpace, domain_two dot com/DirSpace OR Main_Domain dot com/DirSpace As the entire app is dynamically driven from the respective DBs the domains all look different.
    Posted to State Management (Forum) by gchq on 8/19/2009
Page 1 of 10 (100 items) 1 2 3 4 5 Next > ... Last »