anything beside onload event

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MATTXtwo
    New Member
    • Sep 2006
    • 83

    anything beside onload event

    can i have an ideas?
    i cannot use the onload event coz i already have that on other asp page that merge with other page that need some event handler when first loads...
    so any other event handler? or can i use settimeout of javascript after finish loads?
  • DrBunchman
    Recognized Expert Contributor
    • Jan 2008
    • 979

    #2
    Hi MATTXtwo,

    What is it that you are trying to do exactly?

    Dr B

    Comment

    • MATTXtwo
      New Member
      • Sep 2006
      • 83

      #3
      Originally posted by DrBunchman
      Hi MATTXtwo,

      What is it that you are trying to do exactly?

      Dr B
      This from page defaultpage.asp that execute a menus create
      Code:
      <!-- #include virtual="/intranet/inc/menu.asp" -->
      <body topmargin="5" onload="init()">
      This from page Maklumat_Periba di.asp that i need to load some function on that page
      Code:
      <body onload="Loadsome()">
      and i have call these two page by:
      Code:
      "http://mrusvr2/intranet/defaultpage.asp?ifr=/intranet/menu/menu_hr.asp&c=hr/Maklumat_Peribadi.asp"
      the thing is defaultpage.asp runs it's onload fine...
      Maklumat_Periba di.asp can't run because it's there onload event on defaultpage.asp ...but i really need to run Loadsome() function to check Maklumat_Periba di.asp page

      Comment

      • DrBunchman
        Recognized Expert Contributor
        • Jan 2008
        • 979

        #4
        How have you used Maklumat_Periba di.asp inside your defaultpage.asp ? Are you using an iFrame or something like that?

        Dr B

        Comment

        • MATTXtwo
          New Member
          • Sep 2006
          • 83

          #5
          Originally posted by DrBunchman
          How have you used Maklumat_Periba di.asp inside your defaultpage.asp ? Are you using an iFrame or something like that?

          Dr B
          i use the iframe for ifr var
          server.execute command for c var
          which Maklumat_Periba di is in c...
          so i can't do the onload event in Maklumat_Periba di.asp

          Comment

          Working...