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
    Page Template Framework for ASP.NET 1.1
    The Code Project
    The Page Template Framework for ASP.NET 1.1 provides a configurable solution for creating page templates in a Web application. Using this framework, page templates are stored in an XML file, and can be dynamically configured without recompiling the Web application.
    Page Tracing/Timing
    LearnASP
    This page demonstrates how a pagecan use tracing to time tasks to the millisecond and place debug data into pages. The nicest part aboutthe tracing presented here is that it can be left in pages and switched on oroff as a group with one page directive.
    Page Tracking in ASP.Net
    The Code Project
    This articles explains how to track visitors to your web site.
    Paging Database Results in ASP.NET
    4Guys from Rolla
    In Part 1 we looked at how to bind a DataSet to the DataGrid Web control. However, in our live demo we noted that the sheer number of results made the data hard to consume for visitors. Ideally, we'd like to page this data. In this part, we'll look at how to implement paging using the DataGrid Web control. It is surprisingly easy!
    Pass-Through Security Authentication (Single Sign-on) using ASP.NET
    The Code Project
    The Pass-Through authentication enables a user to sign-on to their intranet and access other web applications without being asked for login again.
    Passing parameters to an ASP.NET page running in an IFRAME
    The Code Project
    How to pass parameters to an aspx page that is hosted within an IFrame. Also how to handle postback issues in a modal window.
    Passing Variables Between Pages and Other Parts of a Web Application
    DotNetJunkies
    ASP.NET brings a few new options to developers if they need to pass variables between pages. Filip shows how conveniently all the old ways are still available like Session and Query and introduces the new features like Context.
    Performance Monitoring
    C# Help
    It's agreed that a program must run correctly and produce accurate results, but in many systems this isn't enough. Enterprise-class applications are of such mass that they must also be scalable. Verifying the scalability of an application traditionally requires specialized tools and bolted-on functionality to support monitoring. Now there's help, using the performance counter capability of the System.Diagnostics namespace.
    Persisting Datasets in ASP.NET ViewState
    ASPFree
    Persisting data, particularly object state, in a connectionless environment has always been a challenge. There has always been Session variables in traditional ASP, but those tie user sessions to a thread running on a specific computer, nullifying any plans for real scalability. And you could always write a function to serialize an object and try storing that string in a hidden form field, but again, that was clunky. Now we have ASP.NET, which is much better adept to helping us solve this problem; especially the ability to serialize objects.I’ve found that by using only functions provided by the Framework one can easily persist a Dataset as XML in ASP.NET Viewstate.
    PickList
    The Code Project
    Two listboxes to choose from and client-side scripting to move items from left to right and vice versa
    Picture Chat using C#
    The Code Project
    Chat program that support unicode inputs and picture transfer
    Planning Form Layout in VB.NET
    C# Corner
    This article shows you how to design fairly complicated forms, which can resize, using anchors, docks and panels with a dash of code.
    Playing with 3-D Coordinate Space in C#, GDI+ and .NET
    C# Corner
    As I was trying to think of an article to write on GDI+, I started looking through some of my old programming books and came across Tricks of the Game Programming Guru. There are good explanations in this book of the Ray Tracing Algorithm, the Painter's Algorithm, Z-Buffering, 3-D Sprite Manipulation, and (relevant to this article) dealing with a 3-D Coordinate System.
    Polygon Triangulation in C#
    The Code Project
    Triangulate a polygon by cutting ears in C#
    Poorman's Installation program in C# and .NET
    C# Corner
    Installation programs can be quite expensive these days. Although programs such as Wise and InstallShield have fantastic features and are fairly comprehensive, sometimes you just want to do the easy installation of copying and pasting files into a directory and perhaps placing a shortcut in the start menu. This simple program can do just that without breaking the bank. It also contains some of the flashy features of Wise and InstallShield like a progress bar, timed billboards, an an XML file to describe your "installation script". Best of all it comes with source code so you can alter it to suit your needs.
    Populate A Drop-down List From A SQL Server Database
    ORCS Web
    The code below demonstrates how to populate an ASP.Net DropDownList controlwith the results of a query against SQL Server.
    Populating a Search Engine with a C# Spider
    The Code Project
    How-to build an ASP.NET search engine link-spider using C#
    POSTing Data with ASP.NET
    ASP Alliance
    Thanks to Alex Lowe for this updated code. Using the example code listed below, you can easily convert the page scraping code described in the last article to use the POST protocol. This will allow you to submit form information to sites and retrieve the results, which allows for great integration opportunities. We covered the basics of this technique in the last article, so now I'm just going to demonstrate the code.
    PRB: "Cannot Start More Transactions on This Session" Error Message When You Use OLE DB Provider for SQL Server in ADO.NET
    Microsoft Support
    (316872) - When you use Microsoft OLE DB Provider for SQL Server (OLEDBSQL) in ADO.NET, if you try to start more than one transaction in a session, you receive the following error message: System.Data.OleDb.OleDbException: Cannot start more transactions on this...
    PRB: "Catastrophic Failure" Error Message When You Try to Debug an ASP.NET Application on Windows 2000 Domain Controller
    http://www.kbalertz.com/
    (827559) - When you try to debug a Microsoft ASP.NET Web Application on a computer that is running Microsoft Windows 2000 Server domain controller with Service Pack 4 (SP4) installed, you may receive the following error message: Error while trying to run...
    PRB: "COMPUTE BY Statements Not Supported" Exception When You Use COMPUTE BY Clause with SQL Server
    http://www.kbalertz.com/
    (311540) - When you attempt to use the COMPUTE BY clause with the Microsoft SQL Server .NET Data Provider, you receive the following exception: An unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll. Additional information:...
    PRB: "CS1010: Newline in Constant" Error Message When a String Contains a </SCRIPT> Tag in the Inline Code
    Microsoft Support
    (827420) - When you try to browse an .aspx page with inline code that contains the </SCRIPT> HTML tag, you may receive the following error message: Server Error in '/<applicationname>' Application. Compilation Error Description: An error occurred during the...
    PRB: "CS1010: Newline in Constant" Error Message When a String Contains a </SCRIPT> Tag in the Inline Code
    Microsoft Support
    (827420) - When you try to browse an .aspx page with inline code that contains the </SCRIPT> HTML tag, you may receive the following error message: Server Error in '/<applicationname>' Application. Compilation Error Description: An error occurred during the...
    PRB: "Requested Registry Access Is Not Allowed" Error Message When ASP.NET Application Tries to Write New EventSource in the EventLog
    http://www.kbalertz.com/
    (329291) - When you use ASP.NET to create a new event source in the event log, you may receive the following error message: System.Security.SecurityException: Requested registry access is not allowed.
    PRB: "Unable to Start Debugging on the Web Server" Error Message While You Debug ASP.NET Applications
    http://www.kbalertz.com/
    (817034) - You create an ASP.NET Web application and then specify that the authentication in Internet Information Services (IIS) is set to Basic authentication. When you try to start to debug the ASP.NET Web application project in Visual Studio .NET, you may...
    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