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

  1. #1

    Default page_load

    I've got an aspx and I need that his page_load event be fired every time I
    enter the page. Actually I put a break point in the first line in the
    page_load but it only works the first time I enter the page.

    What's happening?

    Thanks


    Alberto Guest

  2. Similar Questions and Discussions

    1. Page_Load issue
      Hi, I am relatively knew to the ASP .Net world, so I may be going about this all wrong, but I need to figure this out anyway. I am using a IE...
    2. databinding after page_load
      Hi, I'm working on a webpage which starts with a rather timeconsuming database transaction. (two different .mdb's from different MSAccess versions...
    3. Why bad with Page_Load
      I have an XML Web Servic (.asmx) to generate an Excel file, and it works as expected. However, here is the bad thing, - if this web service is...
    4. progress bar and page_load
      Hi Basically I call a page that does a very long op But I need to display a progress bar no frames There is an old trick in html and asp ...
    5. Page_Init() and Page_Load()
      Hi, what is the purpose of having a Page_Init() AND a Page_Load() event handler 'cause both will always be executed on loading a page ? What...
  3. #2

    Default page_load

    Hi

    Is there any IsPostBack check in page_load or Page_Init
    events?


    Ravikanth[MVP]


    >-----Original Message-----
    >I've got an aspx and I need that his page_load event be
    fired every time I
    >enter the page. Actually I put a break point in the
    first line in the
    >page_load but it only works the first time I enter the
    page.
    >
    >What's happening?
    >
    >Thanks
    >
    >
    >.
    >
    Ravikanth[MVP] Guest

  4. #3

    Default Page_Load

    i'm using custom server control x (inherits webcontrol)

    the server control is executed from Page_Load on aspx.vb page
    now the problem:

    the Load event from aspx.vb is executed before Load event of my server
    control. i cannot
    override it unless trough another class(which inherits system.web.ui.page).
    what i need is to make
    some modification when viewstate is enabled but before the aspx.vb Page_Load
    event is executed.
    Is there any way to override Load event from WebControl?




    Peter Licen 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