When control init event fired???

A

Anatoly

Put any control on web page.
create Init event for ths control.
Write Response.Write("here") inside this event.
Compile\build\run. I never saw "here" string appear on web page. Why???
 
J

Jim Cheshire

Anatoly,

Let me look into this for you and get back to you. If you dynamically
create the control, it will fire the Init event, but it should fire either
way I would think.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
 
J

Jim Cheshire [MSFT]

Anatoly,

I believe the reason for this is that by the time you hook the event, it
has already fired. That is why if you dynamically create the control, the
Init event fires without issues. That's what I'm checking on.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
 
J

Jim Cheshire [MSFT]

Anatoly,

I haven't forgotten you. Still tracking this down for you.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
X-Tomcat-ID: 485380958
References: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
From: (e-mail address removed) (Jim Cheshire [MSFT])
Organization: Microsoft
Date: Wed, 30 Jul 2003 16:55:50 GMT
Subject: Re: When control init event fired???
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
Lines: 68
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163439
NNTP-Posting-Host: TOMCATIMPORT2 10.201.218.182

Anatoly,

I believe the reason for this is that by the time you hook the event, it
has already fired. That is why if you dynamically create the control, the
Init event fires without issues. That's what I'm checking on.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
From: "Anatoly" <[email protected]>
References: <[email protected]>
Subject: Re: When control init event fired???
Date: Wed, 30 Jul 2003 18:47:42 +0200
Lines: 46
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 212.150.128.10
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163406
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Control droped on webpage in design time, still Init event wont fire(I try
several controls: textbox, dropdown)
Thanks
 
J

Jim Cheshire [MSFT]

Anatoly,

The Init event for a control created in Design view is handled in the
OnInit for the page. If you want to explicitly handle the Init event, you
need to explicitly create the control by doing it dynamically.

Jim Cheshire [MSFT]
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
X-Tomcat-ID: 629347168
References: <[email protected]>
<[email protected]>
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
From: (e-mail address removed) (Jim Cheshire [MSFT])
Organization: Microsoft
Date: Fri, 01 Aug 2003 22:19:17 GMT
Subject: Re: When control init event fired???
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
Lines: 96
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:164273
NNTP-Posting-Host: TOMCATIMPORT1 10.201.218.122

Anatoly,

I haven't forgotten you. Still tracking this down for you.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
X-Tomcat-ID: 485380958
References: <[email protected]>
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
From: (e-mail address removed) (Jim Cheshire [MSFT])
Organization: Microsoft
Date: Wed, 30 Jul 2003 16:55:50 GMT
Subject: Re: When control init event fired???
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
Lines: 68
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163439
NNTP-Posting-Host: TOMCATIMPORT2 10.201.218.182

Anatoly,

I believe the reason for this is that by the time you hook the event, it
has already fired. That is why if you dynamically create the control, the
Init event fires without issues. That's what I'm checking on.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
From: "Anatoly" <[email protected]>
References: <[email protected]>
Subject: Re: When control init event fired???
Date: Wed, 30 Jul 2003 18:47:42 +0200
Lines: 46
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 212.150.128.10
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163406
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Control droped on webpage in design time, still Init event wont fire(I try
several controls: textbox, dropdown)
Thanks

Anatoly,

Let me look into this for you and get back to you. If you dynamically
create the control, it will fire the Init event, but it should fire either
way I would think.

Jim Cheshire
Developer Support
ASP.NET
(e-mail address removed)

This post is provided as-is with no warranties and confers no rights.

--------------------
From: "Anatoly" <[email protected]>
Subject: When control init event fired???
Date: Wed, 30 Jul 2003 11:25:43 +0200
Lines: 6
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <[email protected]>
Newsgroups: microsoft.public.dotnet.framework.aspnet
NNTP-Posting-Host: 212.150.128.10
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.aspnet:163266
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

Put any control on web page.
create Init event for ths control.
Write Response.Write("here") inside this event.
Compile\build\run. I never saw "here" string appear on web page. Why???
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top