Click here to Skip to main content
15,885,365 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="Default.aspx.cs" Inherits="ColorPicker._Default" %>

<!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>ColorPicker</title>
</head>
<body>
	<form id="form1" runat="server">
	<h1>Asp.net Color picker based on the <a href="http://developer.yahoo.com/yui/colorpicker/">YUI color picker</a> control.</h1>
	 <div>	
      <a href="Inline/Default.aspx">Basic usage</a><br />
      <a href="Inline/Callback.aspx">ASP.NET Callbacks</a><br />
      <a href="Inline/Animation.aspx">Animations</a><br />
      <a href="Inline/ClientEvents.aspx">Client events, Continuous updates</a><br />
      <a href="FloatingDialog/Default.aspx">Window</a><br />
      <a href="FloatingDialog/Modal.aspx">Modal Window</a><br />
      <a href="FloatingDialog/MultiplePickers.aspx">Multiple color pickers</a>
      
      <h2>Further work with this picker:</h2>
      <ul>
      <li> ColorPickerButton mode . See <a href=" this'>http://developer.yahoo.com/yui/examples/button/btn_example11.html"> this article</a></li>
      <li> External window mode: window.open and window.showModalDialog</li>
      </ul>
    </div>	</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