I have a color button in a text editor to change the font color but I could not execute the event, I attach the code:
<input id="Color_Letra" runat="server" name="color" type="color" value="#000000" onchange="Pintar"/>
This is the event:
protected void Pintar()
{
textbox_titulo.Attributes.Add("style", "color:" + Color_Letra.Value);
}
I have also tried it with parameters (object sender, EventArgs e) but nothing works, I thank you in advance.