Tagged Questions

3
votes
3answers
15k views

asp.net :how to use eventargs for parameter passing on button onclick?

i have seen some code in which people pass parameter through commandParameter Property of web control.then what is use of eventargs.
2
votes
2answers
124 views

Custom Events in ASP.NET

I want to handle a custom event on an asp.net page with C# as my code Behind. I want to increase the size of the search text box on clicking it. It should be somewhat like this... I know this can ...
2
votes
3answers
197 views

Can someone please explain to me in the most layman terms how to use EventArgs?

I know they have something to do with delegates. I've tried but I still don't comprehend how to use those either. I know a little about event handlers but what I really want to know is how I can use ...
1
vote
3answers
75 views

VB.Net, EventArgs, ByRef and ByVal

In VB.Net, I have an object named WorkflowButtonEventArgs that inherits from System.EventArgs. The WorkflowButtonEventArgs class contains two ByRef Properties. These are objects that are in memory, ...
1
vote
2answers
98 views

How do I find which eventargs class to use in asp.net control event

If I add an event to my control in the markup, eg in and EntityDataSource add a OnUpdating, how can I find the method parameter list? eg how do I know to put in (object sender, ...
1
vote
6answers
6k views

C# Custom EventArgs Question

I have a custom collection that I am adding a ValidateItem event to. This ValidateItem event will be called whenever an item is added to or updated in the custom collection. I want to allow derived ...
0
votes
2answers
144 views

Passing information from javascript to C# using events

I have this ASP.net component: <asp:Button ID="Button4" runat="server" Text="Submit Entry" CssClass="eventSubmitButton" OnClick="SubmitData"/> and I'd like to send some additional information ...
0
votes
1answer
629 views

Can you set EventArgs from ASP.NET controls?

I have a DropDownList whose SelectedIndexChanged event I set: move.SelectedIndexChanged += Move; public void Move(object sender, EventArgs e) { } I'd like to create a class derived from EventArgs ...