Click here to Skip to main content
15,884,537 members
Articles / Web Development / ASP.NET

An ASP.NET Color Picker Control based on YUI Color picker

Rate me:
Please Sign up or sign in to vote.
4.53/5 (9 votes)
3 Jun 2009Ms-PL7 min read 43K   944   19  
An ASP.NET Color Picker Control based on YUI Color picker
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Callback.aspx.cs" Inherits="ColorPicker.Fixed.Callback" %>
<%@ Register tagprefix="yui" Namespace="ColorPicker" %>
<%@ Register assembly="ColorPicker" namespace="YUI.Controls" tagprefix="Yui" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Color picker callbacks</title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:Label runat="server" ID="Message" />
    <div>
      This color picker is inline. It exists as part of the page and is visible most of the time.<br />
      The color picker fires callbacks to the server whenever its value changes.<br />
      Callbacks are enabled using the UseCallback property.		
      <yui:ColorPicker 
      ID="YuiColorPicker1" 
      runat="server" 
      ColorPickerMode="Inline"
      EnableAnimation="true"
      OnColorChanged="YuiColorPicker1_ColorChanged"
      Color="#ff0000"
      UseCallback="true" 
        />
      
    </div>     
    <asp:Label ID="Msg2" runat="server" />
        
    <asp:Button ID="Button1" runat="server" Text="Postback" OnClick="Btn_Click"  />
    
    <input type="button" ID="btnShow" runat="server" value="Show" />
    <input type="button" ID="btnHide" runat="server" value="Hide" />
    <input type="button" ID="btnGetValue" runat="server" value="ShowValue" />
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Product Manager CodeRun
United States United States
I'm a founder and product manager at CodeRun. I'm interested in C#, Code technology, Javascript, and everything in between.
Aside from these professional interests, I enjoy playing and listening to music, movies, diving, hiking, biking, wine, food, and everything life has to offer.

Comments and Discussions