Tagged Questions

15
votes
5answers
30k views

Jquery asp.net Button Click Event via ajax

I was wondering if anyone can point me in the right direction. I have an asp.net button with a click event (that runs some server side code). What i'd like to do is call this event via ajax and ...
10
votes
3answers
2k views

Advanced: How many times does HttpModule Init() method get called during application's life?

Web application initialization is as follows: As we know when IIS receives the first request for a particular Asp.net application resource, IIS creates an instance of a HttpApplication (defined in ...
10
votes
2answers
16k views

Get DataKey values in GridView RowCommand

I have a GridView with an associated DataKey, which is the item ID. How do I retrieve that value inside the RowCommand event? This seems to work, but I don't like the cast to LinkButton (what if some ...
8
votes
1answer
2k views

Post Publish Events

For normal (say Windows Forms) C# applications, to execute commands after a successful build I would use the Build Events->Post-build event command line in Project Properties. I have a Web Site ...
7
votes
6answers
2k views

When do you use If (!IsPostBack) in ASP.NET?

The more I use ASP.NET, the more if (!IsPostBack) {} seems pointless... First example: For example, I just Googled an issue, they said use this as part of the solution: if (!Page.IsPostBack) { ...
7
votes
4answers
696 views

ASP.NET- forcing child/container events to fire before parent onload?

I'm working on a questionnaire type application in which questions are stored in a database. Therefore, I create my controls dynamically on every Page.OnLoad. This works like a charm and ViewState is ...
6
votes
3answers
185 views

ASP.net server event handled client-side

I was wondering if anyone had an easy way to wire up javascript event handlers to events happening on the server-side. I have a long running process that includes a lot of steps, and would like the ...
6
votes
5answers
14k views

.NET Events - What are object sender & EventArgs e?

What do sender and eventArgs mean/refer to? How can I make use of them (for the scenario below)? Scenario: I'm trying to build a custom control with a delete function, and I want to be able to ...
6
votes
5answers
7k views

ASP.NET page events - Button click event comes after GridView bind

My understanding of the order of page events is this: Page : Load Control : DataBind (for a GridView or whatever) Control : Load Control : Clicked (for a Button) Page: ...
6
votes
4answers
6k views

Unregistered event handlers cause memory leak

I'm maintaining a web application that has a memory leak. Based on my investigation using Red Gate ANTS memory profiler I'm pretty sure that the memory leak is caused by event handlers in the ...
6
votes
6answers
2k views

How can I create buttons and hook up events from postback

I need to generate buttons initially based on quite a processor and disk intensive search. Each button will represent a selection and trigger a postback. My issue is that the postback does not ...
5
votes
2answers
148 views

ASP.Net page Life Cycle

I am going through page life cycle.When i referring the following there the LoadPostData() method is expressed as (First Try) later (Second Try).What does here try refer to?
5
votes
3answers
124 views

What is the best way to handle multiple actions?

Like most web applications you have a method that gets called when you log in. There are a few things that may need to get done when logged in and over time this may increase. eg. logging, welcome ...
5
votes
3answers
3k views

log4Net EventlogAppender does not work for Asp.Net 2.0 WebSite?

I have configured log4Net EventLogAppender for Asp.Net 2.0. However it does not log anything. I have following in my Web.Config. <log4net> <appender name="EventLogAppender" ...
5
votes
4answers
209 views

Why the Difference in Nomenclature?

Why is it that in .aspx pages all events are preceded with "On" e.g. "OnClick", "OnCommand" and in the code-behind file they are referred "Click", "Command"? Just Naming Convention or is there some ...
5
votes
6answers
609 views

Events tab randomly appears and disappears in VS 2008

I know it's a minor annoyance.. but it's still an annoyance and it baffles me.. About 3 months ago I was using VS 2008 and when I went to the "Properties" tab there was the little lightning bolt for ...
5
votes
2answers
3k views

Application_Start not being hit in ASP.NET web app

I'm trying to debug something in the global.asax.cs file in an ASP.NET web app and have set a breakpoint in the Application_Start() event however that event is not getting fired when I start the web ...
5
votes
5answers
11k views

ASP.NET Repeater ItemDataBound happening AFTER PreRender event?

I have a repeater control on an ASP.NET 2.0 web form. As I understanding it, all of the page's data-bound controls fire their binding events somewhere in between the Page_Load and the Page_PreRender ...
4
votes
1answer
260 views

If I have a button click event and an ObjectDataSource selecting event, which fires first and why?

Title explains it all really, which event fires first in the page life cycle and why?
4
votes
2answers
136 views

Why event bubbling and why not directly subscribe the click event?

I was going through an article on event bubbling in asp.net and came to know that although it is possible to subscribe to the click event of a user control's button from the containing page, "doing so ...
4
votes
4answers
886 views

jQuery problem with change event and IE8

There is a bug in jQuery 1.4.2 that makes change event on select-element getting fired twice when using both DOM-event and a jQuery event, and this only on IE7/8. Here is the test code: <html> ...
4
votes
3answers
2k views

How do I cancel event bubbling in ASP.net?

Is it possible to stop an ItemCommand or control event from bubbling up the control hierarchy? I have a control that contains child user controls that may or may not already have code that handles ...
4
votes
4answers
291 views

Why do WebControl events have the prefix of “On”?

I'm trying to fully understand the WebForm event model (not the page lifecycle, but how the events are wired up when specified declaratively in the .aspx or .ascx files. Take the Button control for ...
4
votes
10answers
11k views

ASP.NET: Problem with event handlers for dynamically created controls

I've got this problem with dynamically created TextBox. When the TextBox is created in PageLoad, it's TextChanged event was fired. But when I dynamically delete and recreated the TextBox, the ...
4
votes
4answers
31k views

ASP.NET Dropdownlist selectedindexchanged event not firing on up / down arrow

I have a server dropdownlist in an Ajax updatepanel. When I use the mouse to click on an item it fires the postback but when I click the up/down arrow to change entries, this is not firing. What ...
3
votes
1answer
60 views

Javascript Unable to GetElementById in ASP.NET C#

I know this is a very common problem. I was trying to get a "enter key" event to invoke a click on a certain button on the page through javascript. However, I can't for the life of me fetch a ...
3
votes
3answers
99 views

Do you need to “unwire” event handlers in ASP.NET webforms

Given that all controls in a WebForm are destroyed (by my understanding) at the end of each postback do you need to "unwire" any event handlers you may have wired up? (Assuming you want to stop ...
3
votes
1answer
167 views

CommandEventArgs and Event question

I generated a few buttons and attached to them an eventhandler like this: Button pgs = new Button();//Create New Topic pgs.Width = 20; pgs.Command += obtainTopicsPerPage_Click; pgs.CommandName = ...
3
votes
4answers
141 views

I have a problem with an eventhandler (c#)

This code is from one class Button pagebtn = new Button(); pagebtn.Text = "2"; pagebtn.Click += listTopicPerPage_Click(this, new btnEventArgs() { btnNumber = 2 }); I get an ...
3
votes
1answer
237 views

ASP.net control Postback Problem (Can't read the value the user entered!)

I've written a custom widget to allow a user to select a location from a database of locations. This is my first ASP.net custom control. It seemed like everything was working fine, but now there's a ...
3
votes
1answer
64 views

Does each webcontrol have only one unique event not inherited from System.Web.UI.WebControls?

The reason I want to know this is because it seems that __doPostBack('controlId','eventarg') raises the unique event of the control specified, but I wonder what would happen if the control had ...
3
votes
3answers
105 views

Is it possible to create basic event handler for many pages with user control or master page?

I need to create general actions menu for my pages. All of pages will implement some basical functionality, i.e adding new rows to some table, editing them, calling filters. Many of this pages will ...
3
votes
1answer
135 views

Calculate repeater items which is in user control and display it in literal which is in page?

I've a scenario where I want to calculate the no of records in repeater which is in user control and display the count in a literal which is in page(ex default.aspx). How can I achieve this ? I don't ...
3
votes
2answers
8k views

Why won't my LinkButton inside a GridView raise its OnClick event?

I have a LinkButton inside a GridView (via an TemplateField). No matter what I try, the LinkButton will not invoke its event handler. I have tried both: A traditional event handler ("OnClick") A ...
3
votes
1answer
98 views

Do I need to manually remove all event to make my object remove from memory?

I have read in MSDN that is require to Unsubscribing every events an object has to be able to dispose it from memory. I always used -= to remove all references to event inside my object (like MSDN ...
3
votes
3answers
2k views

EventHandler is null

I am trying to raise a click event from User control and handle it on the containing page. The problem I have is, when I click the button 'imgstep1' on the user control, the code behind imgstep1_click ...
3
votes
3answers
1k views

How to track Google Analytics Events in Server Side asp.net?

Is there a way to track Google Analytics Events from Server Side in ASP.NET, the requirement is the the Event should be tracked on button click after some functionalities are executed on Serverside. ? ...
3
votes
2answers
3k views

IPostbackEventHandler VS IPostbackDataHandler

1) User selecting an item in DropDownList is considered to be postback data, and for that reason DropDownList implements IPostbackDataHandler. a) But why isn’t user moving ( in Calendar control ) ...
3
votes
4answers
563 views

UserControl events not working for first time

I am calling my user control in a web page dynamically. For the first time when I click the button on user control, the event is not firing. When I click the same for a second time, the events are ...
3
votes
2answers
892 views

Attaching events to Session OnStart and OnEnd using HttpModules

Does anyone know a clean way of adding events to Session's OnStart and OnEnd events using an HttpModule (without touching the Global.asax file)?
3
votes
2answers
926 views

Do I need to unsubscribe from (manually subscribed to) events in asp.net?

Do the same best practis rules regarding subscribing/unsubscribing to events apply in asp.net? I know it might seem like a silly question, but when I think about it, I have never really seen any code ...
3
votes
4answers
2k views

“Re-Raising” Custom Events in .NET (ASP.NET in this case)

I'm working on an ASP.NET page, using VB.NET and I have this hierarchy: Page A   - Web User Control 1     - Web User Control A     - Web User ...
3
votes
5answers
1k views

ASP .Net server control events order

Which are the events of an ASP .Net server control and how does their order relate to the containing page's events? The concrete problem is that I am looking for an event inside the server control ...
2
votes
2answers
185 views

How to pass parameters to click event method using c#

i have this button on my C# context: <button id='Update' OnServerClick='UpdateCart'>Update</button> now I wanna to pass parameter (num) to (UpdateCart) Method : protected void ...
2
votes
3answers
49 views

Does ASP.NET use reflection to check for existance of event handlers?

I create an asp.net page e.g. default.aspx. I then define a button... <asp:Button ID="btnNew" runat="server" Text="New" OnClick="btnNew_OnClick" /> ... however I do not define the handler ...
2
votes
1answer
97 views

Refresh ASP.NET page using custom event

I have created a List which generates a custom event based on Example 1 from this page, and I need to update an aspx page whenever there are any new elements in the List. When I debug the application ...
2
votes
2answers
159 views

Event aggregator for asp.net

My needs I would like our in house, standard product to fire different events when things happen. In global asax on different custom solutions, I would like to hookup on these events, when needed, ...
2
votes
1answer
67 views

Custom event not working when registered in an ASPX file

I am trying to register a custom event I added to a user control. I can do this in code behind, but not in the aspx file. What am I doing wrong? Thanks! The user control: public delegate void ...
2
votes
1answer
37 views

ASP.Net - RepeaterTemplates and Events

Just a random question, In ASP.Net, I have a class that implements ITemplate. That class has a DropDownList inside of it. I want to process the SelectedIndex_Changed event of the DropDownList. ...
2
votes
5answers
488 views

RadListView ItemCommand not firing

I have a RadListView and also an event handler bound to lstGameWaypoints_ItemCommand as shown below. On First display of the grid clicking the delete button successfully triggers a postback and the ...

1 2 3 4 5 11