472,378 Members | 1,442 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,378 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 2596
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: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.
0
DizelArs
by: DizelArs | last post by:
Hi all) Faced with a problem, element.click() event doesn't work in Safari browser. Tried various tricks like emulating touch event through a function: let clickEvent = new Event('click', {...
0
by: F22F35 | last post by:
I am a newbie to Access (most programming for that matter). I need help in creating an Access database that keeps the history of each user in a database. For example, a user might have lesson 1 sent...

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.