Click here to Skip to main content
6,822,123 members and growing! (16,879 online)
Email Password   helpLost your password?
Desktop Development » Button Controls » General     Beginner License: The Code Project Open License (CPOL)

Zeta Web Control Library

By Uwe Keim

A small set of enhanced ASP.NET controls (e.g. an AJAX-enabled ClickOnceButton)
C#, .NET, ASP.NET, Dev
Revision:4 (See All)
Posted:25 Nov 2009
Updated:26 Jan 2010
Views:6,099
Bookmarked:23 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
10 votes for this article.
Popularity: 4.57 Rating: 4.57 out of 5

1

2
2 votes, 20.0%
3
2 votes, 20.0%
4
6 votes, 60.0%
5

Introduction

Zeta Web Control Library is a .NET 2.0 class library that provides you with some enhanced ASP.NET 2.0 web controls.

What's In?

The library contains the following controls:

  • An enhanced version of Eric Plowe's ClickOnceButton control. This is a button control that disables itself after being clicked for avoiding that the user clicks the button twice.
  • An enhanced version of Peter Bromberg's SessionTimeoutControl control. This allows for redirecting to an URL when a user's session timed out.
  • An enhanced GridView control. This control enables you to persist a sort state to an external storage of your choice by subscribing to events or deriving from the control and overriding virtual functions.

The enhanced ClickOnceButton has additional features for working well in an ASP.NET AJAX environment as well as for disabling other buttons on a page, either all or selectively:

<zeta:ClickOnceButton 
    DisableAfterClick="true"
    Mode="ThisAndRelatedButtons"
    runat="server" 
    ID="CmdSave" 
    Text="Save" 
    OnClick="CmdSave_Click">
        <zeta:RelatedButton ButtonControlID="CmdCancel" />
        <zeta:RelatedButton ButtonControlID="CmdDeactivate" />
        <zeta:RelatedButton ButtonControlID="CmdActivate" />
        <zeta:RelatedButton ButtonControlID="CmdReleaseImmediately" />
</zeta:ClickOnceButton>

Using the Code

To include the code in your own ASP.NET web project, add a reference to the "ZetaWebControlLib.dll" to your project.

Next, add a control reference to the controls in the library. This can be done either on each ASPX page where you want to use a control, or centrally in the "web.config" file.

In the "web.config" file, the syntax is:

<add tagPrefix="zeta" namespace="ZetaWebControlLib.Button" assembly="ZetaWebControlLib"/>

To reference the control on a single ASPX page (or in an ASCX control), add the following reference at the top of the file:

<%@ Register Namespace="ZetaWebControlLib.Button" TagPrefix="zeta" %>

To finally create an instance of a control on your ASPX page (or in your ASCX control), use the following syntax:

<zeta:ClickOnceButton 
    runat="server" 
    DisableAfterClick="true"
    ID="CmdOK" 
    Text="Submit the form"
    OnClick="CmdOK_Click" />

Points of Interest

While this article is mostly a very brief overview and does not go into implementation details, I still hope that you like it and that I've shown enough to enable you to decide whether a control in here is usable for your scenario.

For questions, comments and feedback (which I love to hear!) please use the comments section below at the bottom of this article.

History

  • 2010-01-26 - Added missing file from source package
  • 2009-11-26 - First release to CodeProject.com

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Uwe Keim


Member
Uwe does programming since 1989 with experiences in Assembler, C++, MFC and lots of web- and database stuff and now uses ASP.NET and C# extensively, too. He is also teached programming to students at the local university.

In his free time, he does climbing, running and mountain biking. You can watch him most of the day (and probably night) programming.

Some cool, free software from us:

Zeta Test - Integrated test management environment.
Zeta Producer - Intuitive Content Management System (CMS) for Windows.
Zeta Uploader - Easily send large files by e-mail.

Occupation: Software Developer
Company: zeta software GmbH
Location: Germany Germany

Other popular Button Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 2 of 2 (Total in Forum: 2) (Refresh)FirstPrevNext
GeneralClickOnceButtonAsyncPostbackBehavior.js is missing PinmemberJun Xia8:39 26 Jan '10  
GeneralRe: ClickOnceButtonAsyncPostbackBehavior.js is missing PinmvpUwe Keim9:21 26 Jan '10  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

PermaLink | Privacy | Terms of Use
Last Updated: 26 Jan 2010
Editor: Deeksha Shenoy
Copyright 2009 by Uwe Keim
Everything else Copyright © CodeProject, 1999-2010
Web18 | Advertise on the Code Project