Wednesday, June 25, 2014

Color conventions in c# of to and fro conversion(HTML to C# and C# to HTML)

Introduction

In this article I explain how to convert the HTML colors to the c# colors because in c# we have only limited number of colors like example red, green, blue etc…. If you want to display the color some shaded color and RGB color mixing process you can use this methods to overcome this functionalists

Write the below code

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;



Read More »