Click here to Skip to main content
15,886,518 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 43.1K   944   19  
An ASP.NET Color Picker Control based on YUI Color picker
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Modal.aspx.cs" Inherits="ColorPicker.FloatingDialog.Modal" %>
<%@ 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>Modal Color Picker</title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:Label runat="server" ID="Message" />
    <div>
    This is color picker that is rendered in an inline window. It looks and behaves like a real window, but is less obtrusive and can be customized and skinned.<br />
    It has a modal behavior: while displayed, the entire document is masked.<br />
    This behavior is controlled by the ModalBehavior property
    
    <yui:ColorPicker 
      ID="YuiColorPicker1" 
      runat="server" 
      ColorPickerMode="FloatingDialog"
      ModalBehavior="true"      
      OnColorChanged="YuiColorPicker1_ColorChanged"
      LoadYui="true"
        />
		</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