Click here to Skip to main content
15,884,298 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
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

namespace ColorPicker.Fixed
{
	public partial class ClientEvents : System.Web.UI.Page
	{
		protected void Page_Load(object sender, EventArgs e)
    {
      btnShow.Attributes["onclick"] = YuiColorPicker1.GetClientShowPickerScript();
      btnHide.Attributes["onclick"] = YuiColorPicker1.GetClientHidePickerScript();
      btnGetValue.Attributes["onclick"] = "alert('color picker value is '+" + YuiColorPicker1.GetClientGetPickerColorScript() + ");";
			YuiColorPicker1.OnClientColorChanged = "document.body.style.backgroundColor = '#'+" + YuiColorPicker1.GetClientGetPickerColorScript()+";";
    }

    protected void Btn_Click(object sender, EventArgs e)
    {

    }
    protected void YuiColorPicker1_ColorChanged(object sender, EventArgs e)
    {
      Message.Text = "Color changed. New value is " + YuiColorPicker1.Color;
    }	}
}

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