473,320 Members | 1,802 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Page_Load gets called twice

I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.

Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink

#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region

Protected Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace

Apr 29 '07 #1
11 2667
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?

Page events are automatically bound to methods that use the naming convention of
Page_event, such as Page_Load, when you set AutoEventWireup to true or not set it to false.

If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page events called twice, once by AutoEventWireup,
and again when you use Handles.

Test by setting AutoEventWireup to false, or by eliminating the Handles statement.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<fi**********@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.

Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink

#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub

Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region

Protected Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace


Apr 30 '07 #2
Thank you for your reply.
>Are you setting AutoEventWireup to true ?
Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
How can I eliminate the Handles statement ?

Thank you.
On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?

Page events are automatically bound to methods that use the naming convention of
Page_event, such as Page_Load, when you set AutoEventWireup to true or not set it to false.

If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page events called twice, once by AutoEventWireup,
and again when you use Handles.

Test by setting AutoEventWireup to false, or by eliminating the Handles statement.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@c35g2000hsg.googlegr oups.com...
I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -

- Show quoted text -

Apr 30 '07 #3
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?

Yes, it is set to false.

re:
How can I eliminate the Handles statement ?
Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :

Protected Sub Page_Load(...) Handles MyBase.Load, Me.Load

That loads the code twice ( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.

Use :
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load

If you set AutoEventWireup to true, you wouldn't need the Handles method, and you could use :

Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<fi**********@gmail.comwrote in message
news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
>Are you setting AutoEventWireup to true ?
Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
How can I eliminate the Handles statement ?

Thank you.
On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?

Page events are automatically bound to methods that use the naming convention of
Page_event, such as Page_Load, when you set AutoEventWireup to true or not set it to false.

If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page events called twice, once by AutoEventWireup,
and again when you use Handles.

Test by setting AutoEventWireup to false, or by eliminating the Handles statement.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
>
news:11**********************@c35g2000hsg.googlegr oups.com...
I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -

- Show quoted text -


Apr 30 '07 #4
Thank you very much for your help.
Your suggestion to eliminate Me.Load from the Page_Load works !
Thanks a lot !

So, I have to do this on every page ?
Do you know why ASP.Net 2005 default both Me.Load and MyBase.Load ?
Is there any need to call up Page_Load twice ?

THanks again for your help.

On Apr 30, 2:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?

Yes, it is set to false.

re:
How can I eliminate the Handles statement ?

Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :

Protected SubPage_Load(...) Handles MyBase.Load, Me.Load

That loads the codetwice( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.

Use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load

If you set AutoEventWireup to true, you wouldn't need the Handles method,and you could use :

Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
Are you setting AutoEventWireup to true ?

Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handlesstatement.

How can I eliminate the Handles statement ?

Thank you.

On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such asPage_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page eventscalledtwice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handlesstatement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form.Page_Loadcalls a
sub mySub that does not do anything (for testing purposes). But,
>Page_Loadgetscalledtwice.
On every single ASPX page in my site,Page_Loadgetscalledtwice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected SubPage_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -

May 1 '07 #5
One more info: these pages were converted from ASP.NET 2003 to ASP.NET
2005 using the wizard in Visual Studio 2005. Do you think that's why
all my pages have both MyBase.Load and Me.Load in the Page_Load ?
Thanks

On Apr 30, 2:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?

Yes, it is set to false.

re:
How can I eliminate the Handles statement ?

Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :

Protected SubPage_Load(...) Handles MyBase.Load, Me.Load

That loads the codetwice( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.

Use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load

If you set AutoEventWireup to true, you wouldn't need the Handles method,and you could use :

Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
Are you setting AutoEventWireup to true ?

Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handlesstatement.

How can I eliminate the Handles statement ?

Thank you.

On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such asPage_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page eventscalledtwice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handlesstatement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form.Page_Loadcalls a
sub mySub that does not do anything (for testing purposes). But,
>Page_Loadgetscalledtwice.
On every single ASPX page in my site,Page_Loadgetscalledtwice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected SubPage_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -

May 1 '07 #6
re:
!these pages were converted from ASP.NET 2003 to ASP.NET
!2005 using the wizard in Visual Studio 2005. Do you think that's why
!all my pages have both MyBase.Load and Me.Load in the Page_Load ?

Short answer : yes.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<fi**********@gmail.comwrote in message
news:11********************@e65g2000hsc.googlegrou ps.com...
One more info: these pages were converted from ASP.NET 2003 to ASP.NET
2005 using the wizard in Visual Studio 2005. Do you think that's why
all my pages have both MyBase.Load and Me.Load in the Page_Load ?
Thanks

On Apr 30, 2:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?

Yes, it is set to false.

re:
How can I eliminate the Handles statement ?

Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :

Protected SubPage_Load(...) Handles MyBase.Load, Me.Load

That loads the codetwice( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.

Use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load

If you set AutoEventWireup to true, you wouldn't need the Handles method, and you could use :

Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
Are you setting AutoEventWireup to true ?

Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.

How can I eliminate the Handles statement ?

Thank you.

On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such asPage_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page eventscalledtwice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form.Page_Loadcalls a
sub mySub that does not do anything (for testing purposes). But,
>Page_Loadgetscalledtwice.
On every single ASPX page in my site,Page_Loadgetscalledtwice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected SubPage_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -


May 1 '07 #7
Thanks again.
Do you know if there is ever any need to call up Page_Load twice ?

On Apr 30, 8:14 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!these pages were converted from ASP.NET 2003 to ASP.NET
!2005 using the wizard in Visual Studio 2005. Do you think that's why
!all my pages have both MyBase.Load and Me.Load in thePage_Load?

Short answer : yes.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11********************@e65g2000hsc.googlegrou ps.com...
One more info: these pages were converted from ASP.NET 2003 to ASP.NET
2005 using the wizard in Visual Studio 2005. Do you think that's why
all my pages have both MyBase.Load and Me.Load in thePage_Load?
Thanks

On Apr 30, 2:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?
Yes, it is set to false.
re:
How can I eliminate the Handles statement ?
Since you already have AutoEventWireup set to false, all you have to dois eliminate
the double-loading of the code base. i.e., you currently have this :
Protected SubPage_Load(...) Handles MyBase.Load, Me.Load
That loads the codetwice( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.
Use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System..EventArgs) Handles
MyBase.Load
If you set AutoEventWireup to true, you wouldn't need the Handles method, and you could use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System..EventArgs)
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message
news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
>Are you setting AutoEventWireup to true ?
Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
How can I eliminate the Handles statement ?
Thank you.
On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such asPage_Load, when you set AutoEventWireup to true ornot set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page eventscalledtwice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
>news:11**********************@c35g2000hsg.googleg roups.com...
I am using ASP.NET 2005 and I have a simple form.Page_Loadcalls a
sub mySub that does not do anything (for testing purposes). But,
Page_Loadgetscalledtwice.
On every single ASPX page in my site,Page_Loadgetscalledtwice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected SubPage_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -

May 1 '07 #8
re:
Do you know if there is ever any need to call up Page_Load twice ?
None whatsoever.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
<fi**********@gmail.comwrote in message
news:11**********************@u30g2000hsc.googlegr oups.com...
Thanks again.
Do you know if there is ever any need to call up Page_Load twice ?

On Apr 30, 8:14 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!these pages were converted from ASP.NET 2003 to ASP.NET
!2005 using the wizard in Visual Studio 2005. Do you think that's why
!all my pages have both MyBase.Load and Me.Load in thePage_Load?

Short answer : yes.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11********************@e65g2000hsc.googlegrou ps.com...
One more info: these pages were converted from ASP.NET 2003 to ASP.NET
2005 using the wizard in Visual Studio 2005. Do you think that's why
all my pages have both MyBase.Load and Me.Load in thePage_Load?
Thanks

On Apr 30, 2:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?
Yes, it is set to false.
re:
How can I eliminate the Handles statement ?
Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :
Protected SubPage_Load(...) Handles MyBase.Load, Me.Load
That loads the codetwice( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.
Use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load
If you set AutoEventWireup to true, you wouldn't need the Handles method, and you could use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message
news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
>Are you setting AutoEventWireup to true ?
Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
How can I eliminate the Handles statement ?
Thank you.
On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such asPage_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page eventscalledtwice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
>news:11**********************@c35g2000hsg.googleg roups.com...
I am using ASP.NET 2005 and I have a simple form.Page_Loadcalls a
sub mySub that does not do anything (for testing purposes). But,
Page_Loadgetscalledtwice.
On every single ASPX page in my site,Page_Loadgetscalledtwice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected SubPage_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -


May 1 '07 #9
Thanks !

On Apr 30, 10:58 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
Do you know if there is ever any need to call upPage_Loadtwice?

None whatsoever.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@u30g2000hsc.googlegr oups.com...
Thanks again.
Do you know if there is ever any need to call upPage_Loadtwice?

On Apr 30, 8:14 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!these pages were converted from ASP.NET 2003 to ASP.NET
!2005 using the wizard in Visual Studio 2005. Do you think that's why
!all my pages have both MyBase.Load and Me.Load in thePage_Load?
Short answer : yes.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message
news:11********************@e65g2000hsc.googlegrou ps.com...
One more info: these pages were converted from ASP.NET 2003 to ASP.NET
2005 using the wizard in Visual Studio 2005. Do you think that's why
all my pages have both MyBase.Load and Me.Load in thePage_Load?
Thanks
On Apr 30, 2:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?
Yes, it is set to false.
re:
How can I eliminate the Handles statement ?
Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :
Protected SubPage_Load(...) Handles MyBase.Load, Me.Load
That loads the codetwice( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.
Use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load
If you set AutoEventWireup to true, you wouldn't need the Handles method, and you could use :
Protected SubPage_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message
>news:11**********************@u30g2000hsc.googleg roups.com...
Thank you for your reply.
Are you setting AutoEventWireup to true ?
Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
How can I eliminate the Handles statement ?
Thank you.
On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such asPage_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page eventscalledtwice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form.Page_Loadcalls a
sub mySub that does not do anything (for testing purposes). But,
>Page_Loadgetscalledtwice.
On every single ASPX page in my site,Page_Loadgetscalledtwice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVale
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected SubPage_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -- Hide quoted text -
- Show quoted text -- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -

May 1 '07 #10
On Apr 30, 3:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?

Yes, it is set to false.

re:
How can I eliminate the Handles statement ?

Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :

Protected Sub Page_Load(...) Handles MyBase.Load, Me.Load

That loads the code twice ( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.

Use :
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load

Juan,
I understand that the problem that you pointed out, but I'm curious
why would have Page_Load handle MyBase.Load as opposed to Me.Load?

Thanks,
John

>
If you set AutoEventWireup to true, you wouldn't need the Handles method,and you could use :

Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
Are you setting AutoEventWireup to true ?

Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handlesstatement.

How can I eliminate the Handles statement ?

Thank you.

On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such as Page_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page events called twice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handlesstatement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -

May 1 '07 #11
re:
!>why would have Page_Load handle MyBase.Load as opposed to Me.Load?

Hi, John.

Please read through this thread:
http://www.dotnet247.com/247reference/msgs/6/34488.aspx

It's an excellent discussion which will clarify the concepts.

Basically, only the base class has the Load event (in this case)
but the derived class *can* handle this event if it desires.

That's why the Handles is MyBase.Load rather than Me.Load.

Since Me refers to the derived class, it doesn't have
any events except the ones that it explicity creates.

You *could* choose to use Me.Load instead of MyBase.Load,
but you'd have to be careful and override any specific events wanted.

This doesn't appear to make much sense in inline code, but in code-behind,
and if you're deriving a custom class from the Page class, it could be critical.

Me ? I take the easy way out. I use AutoEventWireup="true" and inline code.

Look, ma, no Handles ( and no "Me" ) !

:-)


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"John Berberich" <jb********@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
On Apr 30, 3:59 am, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
re:
!This is what it says in myPage.aspx:
!<%@ Page Language="vb" AutoEventWireup="false"
!Does it mean that it is set to False ?

Yes, it is set to false.

re:
How can I eliminate the Handles statement ?

Since you already have AutoEventWireup set to false, all you have to do is eliminate
the double-loading of the code base. i.e., you currently have this :

Protected Sub Page_Load(...) Handles MyBase.Load, Me.Load

That loads the code twice ( once with MyBase.Load and again with Me.Load )
In ASP.NET 1.1 you could get away with that, but 2.0 is a bit stricter.

Use :
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
MyBase.Load

Juan,
I understand that the problem that you pointed out, but I'm curious
why would have Page_Load handle MyBase.Load as opposed to Me.Load?

Thanks,
John

>
If you set AutoEventWireup to true, you wouldn't need the Handles method, and you could use :

Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================<fiefie.ni...@g mail.comwrote in message

news:11**********************@u30g2000hsc.googlegr oups.com...
Thank you for your reply.
Are you setting AutoEventWireup to true ?

Do I find this in the myPage.aspx ?
This is what it says in myPage.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="Auction.WebForm1" CodeFile="myPage.aspx.vb" %>
I do not define/change it, it is like that already. Does it mean that
it is set to False ?
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.

How can I eliminate the Handles statement ?

Thank you.

On Apr 29, 7:16 pm, "Juan T. Llibre" <nomailrepl...@nowhere.com>
wrote:
Are you setting AutoEventWireup to true
(or are you not defining it, since by default it is true) ?
Page events are automatically bound to methods that use the naming convention of
Page_event, such as Page_Load, when you set AutoEventWireup to true or not set it to false.
If you set AutoEventWireup to true, and then use the Handles statement,
you will get Page events called twice, once by AutoEventWireup,
and again when you use Handles.
Test by setting AutoEventWireup to false, or by eliminating the Handles statement.
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
===================================
<fiefie.ni...@gmail.comwrote in message
news:11**********************@c35g2000hsg.googlegr oups.com...
>I am using ASP.NET 2005 and I have a simple form. Page_Load calls a
sub mySub that does not do anything (for testing purposes). But,
Page_Load gets called twice.
On every single ASPX page in my site, Page_Load gets called twice. Why
is that and how can I fix this problem ?
Thank you very much.
Imports System.IO
Namespace myProject
Partial Class WebForm1
Inherits System.Web.UI.Page
Protected WithEvents HyperLink1 As
System.Web.UI.WebControls.HyperLink
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form
Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load, Me.Load
mySub()
End Sub
Sub mySub()
End Sub
End Class
End Namespace- Hide quoted text -
- Show quoted text -


May 1 '07 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Andy | last post by:
Visual Studio 2003 web form problem using C#. My Page_Load or OnInit routines seems to be called twice for every post back to the server. I have 2 web forms that produce this behaviour, all of...
1
by: Jon | last post by:
Hi, I've set up a new web form (new.aspx) that inherits a BasePage class. The new web form contains an override Page_Load event. In BasePage, Page_Load is declared 'virtual'. In the new web...
4
by: Julia | last post by:
Hi Everyone, I am using webbrowser control to post data to an aspx page. However, for some reason, the aspx page sometimes will execute page_load event twice, and sometimes execute it once. So I...
2
by: Eric Maia | last post by:
I have a textbox (StartDateTextBox) in a UserControl on my page, that is supposed to have a date entered into it. I have a RequiredFieldValidator that has its ControlToValidate property set to the...
4
by: Ed | last post by:
Has anyone seen this one? I have a situation where code in my page_load event is firing twice for mozilla firefox users. Everything is fine in IE6. I set breakpoints and verified. The second time...
6
by: Dot net work | last post by:
I've read quite a few threads on these groups about this. When someone says the following: "My Page_Load gets called twice on a button click postback" The replies are: "Do you have...
3
by: Imran Aziz | last post by:
Hello All, I have a search text and button that post data and my button handler filters the repeater control. However when the button is clicked the first time. The page_load event is being called...
2
by: Dave Hagerich | last post by:
I currently have an aspx page that contains a datagrid object and every time the page goes through its lifecycle the Page_Load event gets called twice. I've checked my code and I'm not manually...
1
by: puja | last post by:
hi all, I have this .aspx page for which the Page_load event occurs twice. I found out while debugging. After searching google, I tried checking with Page.Ispostback method and also had...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.