Click here to Skip to main content
15,881,709 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="ClientEvents.aspx.cs" Inherits="ColorPicker.Fixed.ClientEvents" %>
<%@ 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>Client Events</title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:Label runat="server" ID="Message" />
    <div>
      This inline color picker has the OnClientColorChanged property set to a JavaScript code that changes the background color of the body.<br />
      It also calls the GetClientGetPickerColorScript which returns a JavaScript code that evaluates to the current selected value (without the '#')
		<yui:ColorPicker 
      ID="YuiColorPicker1" 
      RunAt="server" 
      ColorPickerMode="Inline"
      OnColorChanged="YuiColorPicker1_ColorChanged"
      UpdateMode="Continuous"
        />
    </div> 
    
    <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