System.EventArgs Class
Information   Base Types   Related Resources

EventArgs is the base class for classes containing event data.

  • Namespace: System
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: mscorlib.dll

  • System.Object
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (890)Discussions (11139)MembersRotorChanges
    Articles

    Page: 1234567891011121314151617181920
    21222324252627282930313233343536
    Animate with Pocket PC
    C# Corner
    This article discusses programming for a Pocket PC in general complete with a code sample.
    Application Configuration Editor Using the PropertyGrid
    The Code Project
    An application configuration editor using the PropertyGrid control.
    Application Configuration Editor using the PropertyGrid
    The Code Project
    An application configuration editor using the PropertyGrid control.
    Applied cryptography part 1: Simple tool to enrcypt/decrypt e-mail messages
    The Code Project
    There is a lot of .NET cryptography articles but not many sample applications using it. This article (part 1) introduces an application that enables to send secure messages via email.
    ASCX Control Parser
    C# Help
    Have you ever wanted to turn a .ASCX file into a distributable control? This program generates the source code for an .ASCX file so that you can compile it without having to distribute the .ASCX file. It comes close to simulating how the Page.LoadControl ("asdf.ascx") works.
    Ask the DotNetJunkies : Building a Master/Detail DataGrid
    DotNetJunkies
    Question: I have a question regarding DataGrid. Can I bind a column of a DataGrid to another DataGrid? I have a situation where I have to display a few details in the same DataGrid on click of a HyperLink column. Thanks in advance.Regards, Prathibha Sharangapani. The Answer: Prathibha, this can certainly be done. You are describing a master/detail DataGrid.
    Ask the DotNetJunkies : Building a Master/Detail DataGrid Part II
    DotNetJunkies
    Building a Master/Detail DataGrid - Great Article! How would a template column be created and included in the DataGrid that appears in the Orders column. GfWeis - The Answer: Well, first off...thanks for the compliment. Now, let's cut to the chase. What you are asking, adding a TemplateColumn to an embedded DataGrid, can certainly be done. We are going to take a slightly different approach for this however. In this tutorial I will show you how to embed a DataGrid in a DataGrid, with a TemplateColumn in the
    Ask the DotNetJunkies: ASP.NET Server Controls vs. ActiveX Controls - Round 1
    DotNetJunkies
    How does the web server download the new event driven control to client side in ASP.NET? Would it be something like ActiveX Control or just scripting? Would this be supported in any type of browser? Thank you!
    Ask the DotNetJunkies: Consuming Remote Web Services in ASP.NET
    DotNetJunkies
    Is there any way one can call web services remotely? Suppose I have a web service which returns a DataSet. I want to call this web service from another URL and use the returned DataSet to display or enter it into my database. - The .NET Framework has made creating and consuming web services quite easy for developers. Using built in technology you can create a function, declare it as a WebMethod and you have a web service. On the other side of that, consuming web services is just as easy.
    Ask the DotNetJunkies: Dynamically Populating An ASP.NET ListBox
    DotNetJunkies
    When dynamically populating a list box using listbox.items.add, asp.net generates the same string for the HTML tag OPTION's value and text. In the past, I would put a table key in the value while filling the HTML text with various information. What are methods for splitting the listbox attributes? The .net framework examples do not address this type of dynamic filling of the listbox. Thanks, Ken (your interview on MSDN was great)
    Ask the DotNetJunkies: Editing with the ASP.NET DataGrid
    DotNetJunkies
    I have bound data to a datagrid, which has ID, name, address columns. But I want the key field (for example ID) as a href so that by clicking on the ID, I can take the user to another page where I can let him edit that record. - Sreedhar Reddy. This is a great question. The best part about it is that the ASP.NET DataGrid server control enables editing of records in a much easier fashion.
    Ask the DotNetJunkies: Performance Impacts of Server Controls
    DotNetJunkies
    If the validation controls or intrinsic controls post the page back to the server, will it not affect the performance of the pages because huge files have to go back and forth from the client to the server?
    Ask the DotNetJunkies: String Parsing For Fun
    DotNetJunkies
    The Question: How do I split a string that contains string values and numeric values into separate string and numeric? The Answer: Code in C# and Visual Basic .NET.
    Ask the DotNetJunkies: Using a Pop-Up Calendar and a List Control
    DotNetJunkies
    In this tutorial Doug Seven shown you how to use a DataGrid and a pop-up calendar / date picker together.
    Ask the DotNetJunkies: Working with Properties and Data Types
    DotNetJunkies
    How do I change forecolor of Label programmatically? I have tried... lblTest.forecolor="green" but keeping getting "System.String cannot be converted to System.Drawing.Color" error. Any help would be appreciated. This is a good question because it gives me the opportunity to address some of the fundamentals of how the .NET Framework handles data types. In classic ASP a color name and a string didn't seem any different in that they were both string values. In .NET data types are much more important and much
    ASP.NET & Databases : Part 7
    ASP Alliance
    Welcome the the seventh part in the series of ASP.NET & Databases. Sadly, this will be the last part in the series as I have decided that I will cover separate topics in other articles (you will see them later). In this part we will go into sorting data in a DataGrid. DataGrid's don't have complete support for sorting built into them, but there are a few features that help you to develop a way to sort your data.
    ASP.NET 2.0 Internals
    MSDN
    While 100 percent backward compatible with ASP.NET 1.1, ASP.NET 2.0 brings a number of internal changes to ASP.NET. These include changes to the code model, compilation, page lifecycle, and more. This article outlines those changes.
    ASP.NET 2.0's Client Callback Feature
    DotNetJunkies
    One of the most overlooked features of ASP.NET 2.0, part of Visual Studio 2005 or "Whidbey", is the Client Callback feature. This feature allows you to programmatically call server-side methods through client-side JavaScript code without the need for posting back the page. This article describes how to use the Client Callback feature to implement your own callback scenario and introduces the new TreeView control that has this feature built in.
    ASP.NET C# Disable/Enable ListItems
    The Code Project
    This article demonstrates how it is possible to disable/enable individual ListItems in a ASP.NET CheckBoxList Server Control.
    ASP.NET C# Disable/Enable ListItems
    The Code Project
    This article demonstrates how it is possible to disable/enable individual ListItems in a ASP.NET CheckBoxList Server Control.
    ASP.NET Color DropDown Control
    The Code Project
    An example of persisting and parsing a custom collection in an ASP.NET server control.
    ASP.NET Control Validation in Groups
    The Code Project
    The validation controls of ASP.NET offer a great deal of flexibility and comfort when you need to write data entry pages in your web application. They provide the ability to ensure valid data in the input fields in a rather declarative than procedural way. So far so good. Imagine a form that handles different payment methods. Depending on the selected method different fields should be mandatory while others remain empty.
    ASP.NET Data Shaping
    MSDN
    Is it possible to port this model to Web Forms and get automatic synchronization between two DataGrid server controls? This is the question I will try to answer in this month's column.
    ASP.NET DataGrid Column Sorting
    DotNetJunkies
    This week I will show you how to implement column sorting using the DataGrid Web common control.
    ASP.NET DataGrid Column Sorting
    DotNetJunkies
    In last two week's I have shown you how to implement both built-in and custom paging functionality using the ASP.NET DataGrid server control. This week I will show you how to implement column sorting using the DataGrid.
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com