Re: Multiple Page_load



"William F. Robertson, Jr." <theman@xxxxxxxxxx> wrote in message
news:ubCHdWkVFHA.2196@xxxxxxxxxxxxxxxxxxxxxxx
> Since you are not using codebehind, you should just be able to define a
> Page_Load method. The following code is in C#
>
> <%@Page Language="C#">
>
> <!-- All your html code in here -->
>
> <script runat="server">
> void Page_Load( object sender, EventArgs e )
> {
> //set the label in here.
> }
>
> </script>

No.

I already do that.

My problem is I really want 2 Page_Load functions (I know - a little
greedy). Normally each page has mostly different Page_Load events.

My problem is when the page first loads. It the "not IsPostBack" section
that I am really interested in. I have a few things, such as check to see
if my session is still current by check to see if one of my session cookies
is there. If not - I need to go off to a new page to handle the problem.

At the moment, I have to add the code in by hand for each page I build to
check to see if the session is live.

I am using templates in Dreamweaver and wanted to add a small section of
code to the area you can't touch that runs this code when the page loads to
check the session (as well as a couple of other items).

The best place (as far as I know) is in the Page_Load area. But if I put
the Page_Load event in the templates area, I can't use it in the other part
of the pages.

I hope I am explaining this correctly.

Thanks,

Tom
>
> Is this what you are after?
>
> bill
>
> "tshad" <tscheiderich@xxxxxxxxxxxxxxx> wrote in message
> news:%23SMrf0jVFHA.2768@xxxxxxxxxxxxxxxxxxxxxxx
>> "William F. Robertson, Jr." <theman@xxxxxxxxxx> wrote in message
>> news:%239sXbHjVFHA.2700@xxxxxxxxxxxxxxxxxxxxxxx
>> >A couple options:
>> >
>> > 1. Wire to the Page.Load event that way it will remain seperate from
> each
>> > page's Load method.
>> > 2. Derive all your pages from myPages.myPage. And in myPage, do your
>> > load
>> > logic. Each derived class (page) will have the name logic on load
> called,
>> > but won't see it, nor will you have to worry about updating X number
>> > pages,
>> > if you are copying and pasting it.
>>
>> Not quite sure how to do that.
>>
>> I am not using code/behind at the moment, so not sure if that is an
>> issue.
>>
>> Why does the user control not have a problem?
>>
>> Tom
>> >
>> > bill
>> >
>> >
>> > "tshad" <tscheiderich@xxxxxxxxxxxxxxx> wrote in message
>> > news:uD$cpwaVFHA.2768@xxxxxxxxxxxxxxxxxxxxxxx
>> >> Is there a way to do put Page_loads on a page?
>> >>
>> >> I am trying to setup a Page_Load that just puts a persons name that is
>> >> logged on at the top of a page the first time a page is loaded.
>> >>
>> >> In my template (which would be copied to each page) would have this in
>> >> it.
>> >> The each page has its own Page handling for the first time it is
> loaded,
>> >> also Page_load.
>> >>
>> >> This seems to work fine if it is in a User Control.
>> >>
>> >> Thanks,
>> >>
>> >> Tom
>> >>
>> >>
>> >
>> >
>>
>>
>
>


.



Relevant Pages

  • Re: Apples customer service sucks!
    ... have a load balancer distribute requests between them. ... break foo.php on server 2 until I've updated it as well. ... BBEdit. ... balancer supports session affinity or that you're storing all ...
    (comp.sys.mac.advocacy)
  • Re: Dynamically adding in User Controls
    ... This would allow me to load or not load depending on values in my session ... that the UserControl is part of the ... Control headerControl = Page.LoadControl; ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Hibernate LazyInitializationException in web application Struts as MVC, Spring as IOC and Hibern
    ... Instead, when you invoke a method of the collection for the first time, it executes an additional database query to load all the objects of the collection. ... In order for this query to work, the object must be associated to an open session. ... Since your toStringmethod probably invokes all the getters it finds on the value object and certainly invoke toStringon the result, Hibernate tries to load the objects in the collection, but your session is closed. ...
    (comp.lang.java.programmer)
  • Re: Page load frequency
    ... Erwin Moller wrote: ... but if the load of running the whole page is much higher, ... first question: Session. ... delete from tblrequest ALL requests older than ...
    (comp.lang.php)
  • Re: Page load frequency
    ... This way i want to protect the DB from being queried rediculously ... Of course this check will slow down each request to the page a little, ... but if the load of running the whole page is much higher, ... first question: Session. ...
    (comp.lang.php)