Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
3k views

What does AutoEventWireUp page property mean?

I am rather new to ASP.NET and I can not understand what AutoEventWireUp page property is responsible for. While serfing on the net, I have found a lot of forums discussions about that and they all ...
4
votes
2answers
2k views

AutoEventWireup and base.OnLoad(e) Calling Self resulting in Stack Overflow

Using VS2008, C#. When AutoEventWireup is set to true and in a webform I call base.OnLoad(e) like: protected void Page_Load(object sender, EventArgs e) { base.OnLoad(e); } The base.OnLoad(e) ...
2
votes
2answers
977 views

AutoEventWireup false on a page with many controls (C#)

Using C#, there is a web form with many controls where the AutoEventWireup is set to false. This forces you to initialize the handlers that you need in the ctor or by overriding OnInit. What about ...
2
votes
1answer
548 views

Asp.Net AutoEventWireup - what is it doing code wise

I've been digging thru the Page, TemplateControl and Control classes in reflector trying to figure out where AutoEventWireUp property is actually getting used. I've failed miserably. My understanding ...
2
votes
2answers
1k views

ASP.NET MVC AutoEventWireup required?

when i create an aspx page, the header includes something like this:- <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" ...
1
vote
1answer
98 views

Where is the event handlers wired up when using AutoEventWireup?

I am trying to track down a bug in a web application, that seems to relate to AutoEventWireup being used. When and how is the events wired up when using AutoEventWireup ? I know that it happens ...
1
vote
1answer
755 views

Manually adding page event handlers in ASP.Net C#

When I've built applications in the past I've used AutoEventWireup to handle the page events for me. From what I've read this incurs a significant performance cost and I'd like to do it manually in my ...
0
votes
1answer
123 views

PreRender in ASP.NET Master Page not firing

Both Page_PreRender and Page_Load do not work in the Master Page I am working with. Page_Init does, however, for any reason. AutoEventWireup is set to true. public partial class MyMaster : MasterPage ...
0
votes
0answers
21 views

What may cause twice execution when AutoEventWireup is set to true ASP.net 4.0

Until now i never paid attention to the AutoEventWireup at my aspx pages. I just noticed and after quick search i found that its performance degrading is not very important. But i also read that it ...
0
votes
1answer
266 views

Add server control to my custom webcontrol that fires javascript function and a server side function

In ASP.Net, I am trying to create a WebControl. In this control, I have RenderControl method overridden with my html controls. protected override void RenderContents(HtmlTextWriter output) { ...