System.Web.UI.UserControl Class
Information   Base Types   Related Resources

Represents an .ascx file when called in an .aspx file.

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

  • System.Web.UI.TemplateControl
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (76)Discussions (1625)MembersRotorChanges
    Articles

    Page: 1234
    .NET Interop: Get Ready for Microsoft .NET by Using Wrappers to Interact with COM-based Applications
    MSDN
    Very soon, the development of Microsoft .NET applications will require interaction between those apps and existing COM components on both the client and the server. The .NET Framework has made provisions for this interaction by implementing various wrappers for COM objects to allow exposure of their properties and methods to .NET components. These wrappers will make it easy to make the connection between COM and .NET.
    A Designable PropertyTree for VS.NET
    The Code Project
    Ever since I first started programming with OWL back in 1995, I've written this type of control each time I learn a new language in which to program GUIs. I wrote one in OWL (Borland's MFC-like library), in straight C, and Java 2's Swing, among others. I've always called them 'PropertyTree's - mostly because the first place I saw them implemented was in Netscape's Edit | Properties dialog box.
    A Docking Control That Can Be Dragged And Resized by the User
    The Code Project
    One of the first features of C# that took my interest was the ability to Dock a Control onto the edge of a Form. Now I could attach a Control (or more likely a composite control by deriving from UserControl) onto a Form edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the control to a different edge and be able to resize the control so that they can customise the application area to suit their own preferences.
    A flexible line graph class library in C#
    The Code Project
    Looking for a way to draw 2D line graphs with C#? Here's yet another charting class library with a high degree of configurability but also easy to use.
    A Tutorial for Constructing a Plug-In Viewer
    MSDN
    Step through the process of implementing a plug-in viewer and integrating it into Analysis Services. Get stub code that enables you to quickly write a plug-in viewer into Analysis Services.
    Adding MouseLeave, MouseHover events to VB6 Controls
    The Code Project
    This article is about creating ActiveX controls in Visual Basic 6 that has two extra mouse Events : MouseLeave ,MouseHover.
    AnimatedIcon Control
    The Code Project
    AnimatedIcon Control plays an animation as a sequence of images stored in the ImageList. The article demonstrates how to show an animated icon on the StatusBar.
    ASP.NET User Controls - Notify One Control Of Changes In Other Control
    The Code Project
    A tutorial on how to use delegate model to notify one ASP.NET user control of changes in the other user control.
    ASP.NET XML Hierarchical Menus Server Control
    XML for ASP.NET
    The XML Hierarchical Menus Server Control improves upon the initial version by encapsulating all of the code into an ASP.NET server control. Doing this allows people with little to no experience with programming C# or VB.NET to integrate the menus into ASP.NET pages. The application demonstrates how the DOM can be used to dynamically create a menu structure similar to the Start menu in Windows that can be used in IE4+.
    Autogeneration of Client-side JavaScript from an ASP.NET User Control
    DotNetJunkies
    I was recently tracking down a bug with JavaScript onMouseOut/onMouseOver handlers in my ASP.NET User Controls. In order to rule out one possible problem – images that haven't been downloaded yet – I decided it would be useful to implement image preloading for my ASP.NET ImageButton controls. I've seen the slick way that Macromedia Dreamweaver inserts the MM_preloadImages() function in its authored pages. So, I thought... there must be a way in my ASP.NET pages to do the same thing. After a little bit of research, I found that there was a way, and it was pretty easy to implement.
    Autogeneration of Client-side JavaScript from an ASP.NET User Control
    DotNetJunkies
    Kirk decided it would be useful to implement image preloading for my ASP.NET ImageButton controls. He saw the slick way that Macromedia Dreamweaver inserts the MM_preloadImages() function in its authored pages. He found that there was a way to do the same thing in an ASP.NET page.
    Barcode PDF417 (2D) UserControl C#
    GotDotNet
    Control de Usuario en C# el cual genera un Codigo de barras de 2D, este genera un archivo Metafile.
    BUG: ActiveX Control Disappears in Windows Forms Designer
    http://www.kbalertz.com/
    (312120) - When you place an ActiveX control that was created in Visual Basic 6.0 or Visual C++ 6.0 on a form in a Visual Studio .NET Windows application, the control may disappear from the form in the design view. The control disappears when you use the...
    BUG: Focus on a Control That Does Not Support the CausesValidation Property Suppresses Validation of Unvalidated Controls in the User Control
    http://www.kbalertz.com/
    (814350) - The pending validation of the controls in a user control is suppressed if the following conditions are true: There are multiple controls in the user control. -and- In the user control, you move from a control with the CausesValidation property set to...
    Code Behind in Web Forms and User Controls
    DotNetJunkies
    In this article Doug Seven teaches you the basics behind Code Behind. You will learn how to work with an ASP.NET Web Form and User Controls while using Code Behind. Downloadable code available in Visual Basic .NET.
    Collapsible Group Box
    The Code Project
    An introduction to the ExpandingPanel and CollapsibleGroupBox controls
    Controls and Icons a la .NET
    MSDN
    In this article Dr. GUI discusses building ASP.NET user controls and building your own deriviative of MenuItem that allows you to add icons to menu items in your Windows Forms applications.
    Create and maintain a links page using XML as the datasource
    http://www.swartzentruber.net/
    I wanted to play around with the idea of using an XML document to store a group of links. This XML document is read into an ADO.NET dataset table for the purpose of rendering in a datagrid or other databound control.
    Creating a Custom Web Control To Consume an XML Web Service
    15 Seconds
    This article provides you with instructions on how to use a simple text editor and the DOS prompt to create a Web server control that gets its data from an eXtensible Markup Language (XML) Web service and simply displays the results on the page. This is very useful since the actual Web server control is a single package. All you need to do is provide people with your assemblies (.DLL files), and then they can simply drag and drop your Web server control onto their pages and the control will take care of the rest. This makes for a very modular approach at site design because it encapsulates many of the redundant tasks normally encountered when developing any type of Web application.
    Creating a Login Custom Web Control
    Bipin Joshi
    ASP.NET provides several web controls that provide rich functionality to the users. In addition to the built-in web controls ASP.NET also allows for the creation of custom web controls. This is something similar to building ActiveX controls. There are two approaches to create a custom web control. Either you build every thing from scratch or you assemble various web controls together to create a new control (sometimes called as pagelets). The first approach gives complete control of the control rendering process. The second approach is however much easy to implement and less time consuming. In this code sample we will see how to create a reusable login web control using the second approach.
    Creating a Login Custom Web Control
    Bipin Joshi
    ASP.NET provides several web controls that provide rich functionality to the users. In addition to the biult-in web controls ASP.NET also allows for the creation of custom web controls. This is something similar to building ActiveX controls. There are two approaches to create a custom web control. Either you build every thing from scratch or you assemble various web controls together to create a new control (sometimes called as pagelets). The first approach gives complete control of the control rendering process. The second approach is however much easy to implement and less time consuming. In this code sample we will see how to create a reusable login web control using the second approach.
    Creating a Page Template by inheriting from the System.Web.UI.Page class
    ASP Alliance
    To create a template interface I drew up a list of properties I felt might be needed for every template I might use.
    Creating a professional looking GDI+ drawn custom control
    The Code Project
    Shows how to create a custom scrolling label control with GDI+ and proper double buffering
    Creating Windows Form User Controls Part -1
    Master C#
    As we all know that the .NET Platform provides us with a Rich Windows Form API to create Windows Applications. Not only this model rich, but its also very extensible! Developers can quickly create their own controls and extend the API as they want! In this article we will see how to create our own Windows Form User Control to help us create a new 'LabledTextBox' control.
    Declarative QueryString Parameter Binding
    The Code Project
    Describes using reflection to automatically populate member parameters from the Form and Querystring.
    Ad


    Need Dot Net Interview Questions?
    Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
    .Net Projects
    Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
    Free .net Help
    Commission ExamGuru, Inc. and his team for your next bespoke software project
    FogBUGZ
    The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
    Awesome Tools
    If you don't know about these, you're missing out... IT Certification Questions
    IT Interview Questions
    Free Oracle 10g Training
    MCSE Boortcamp
    Cisco Study Guides
    Cheap Study Guides
    Exact Questions
    Dot Net Interview Questions
    Oracle OCP
    Cheap Travel
    Designer Perfumes - Wholesale Prices
    Free Programming Tutorials
     
    ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
     Copyright © ExamGuru, Inc. 2001-2006
    Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification