ASP not picking up new page, very strange.

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default ASP not picking up new page, very strange.

    Hi All,

    I've got a page with a couple of Datagrids on it and for some reason the
    page is no longer being picked up by the framework and a very old version is
    being displayed instead. When I say old it is probably a .Net 1.0 and then
    some time back in development as well.

    The strange thing is if you hook up the debugger and pause it the old page
    won't display?? I've googled the groups and not found anything, suggestions
    please.

    Bruce H


    Bruce Hodge Guest

  2. Similar Questions and Discussions

    1. Strange - my page content is jumping to the right
      Hello I have a page with very limited content that is acting funny in MSIE Win: http://www.dorseygraphics.com/review/varian/vss/landing/ The...
    2. Page tiling in Illustrator10 gets moved when picking Distiller as a printer
      When trying to print to Acrobat Distiller, the page tiles in my file get shifted/moved and some get lost. My goal is to print each tile as a separate...
    3. Strange page sizes…
      When I print a .ps file from AI 10 and distill it with Distiller 6 the page size and orientation is sometime correct and sometime defaults to letter,...
    4. Open Web Page not picking up Style Sheet
      Hi Everyone, I'm using Adobe Acrobat 5.0 on Windows XP and would like to create a PDF file of my website. However, it does not pick up the...
    5. Very strange - ASP page called twice from Netscape
      Page with a <form> action calls ASP page. The ASP page has the following structure <%@ LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Option Explicit...
  3. #2

    Default ASP not picking up new page, very strange.

    Have you tried deleting files from the folder named
    VSWebCache\<your site name>? Also you can give a
    different name to your page than the older page.

    Hope this helps.
    >-----Original Message-----
    >Hi All,
    >
    >I've got a page with a couple of Datagrids on it and for
    some reason the
    >page is no longer being picked up by the framework and a
    very old version is
    >being displayed instead. When I say old it is probably
    a .Net 1.0 and then
    >some time back in development as well.
    >
    >The strange thing is if you hook up the debugger and
    pause it the old page
    >won't display?? I've googled the groups and not found
    anything, suggestions
    >please.
    >
    >Bruce H
    >
    >
    >.
    >
    Masood Akthar Guest

  4. #3

    Default Re: ASP not picking up new page, very strange.

    Hi Masood,

    I cleared out the cache files, but there was nothing for the guilty file! I
    also renamed it with no joy.

    So I started doing a line by line comparison with a working page and viola!
    For some reason the Page_Load Event handler had been dropped by VS. The
    method has now been corrected back to the listing below and all is working
    again.

    private void InitializeComponent()

    {

    this.Load += new System.EventHandler(this.Page_Load);

    }

    Bruce H






    "Masood Akthar" <masood_akthar@fmo.com> wrote in message
    news:0c1f01c34b18$f84a8f00$a001280a@phx.gbl...
    > Have you tried deleting files from the folder named
    > VSWebCache\<your site name>? Also you can give a
    > different name to your page than the older page.
    >
    > Hope this helps.
    > >-----Original Message-----
    > >Hi All,
    > >
    > >I've got a page with a couple of Datagrids on it and for
    > some reason the
    > >page is no longer being picked up by the framework and a
    > very old version is
    > >being displayed instead. When I say old it is probably
    > a .Net 1.0 and then
    > >some time back in development as well.
    > >
    > >The strange thing is if you hook up the debugger and
    > pause it the old page
    > >won't display?? I've googled the groups and not found
    > anything, suggestions
    > >please.
    > >
    > >Bruce H
    > >
    > >
    > >.
    > >

    Bruce Hodge Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139