This is a discussion on How to convert Color to it's corresponding Hexadecimal value? within the ASP and ASP.NET Programming forums, part of the Web Development category; How to convert Color to it's corresponding Hexadecimal value?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| How to convert Color to it's corresponding Hexadecimal value? |
| Sponsored Links |
| |||
| Hi You can try filowing sample Code for convert color to Hexadecimal value VB.NET Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here Response.Write(ToHexColor(Color.Blue)) End Sub Function ToHexColor(ByVal c As Color) As String Return "#" + c.ToArgb().ToString("x").Substring(2) End Function C# private void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here Response.Write(ToHexColor(Color.Blue)); } string ToHexColor(Color c ) { return "#" + c.ToArgb().ToString("x").Substring(2); } thanks Kiruthika |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| To change the BackGround Color of Submenus without using CSS | kingmaker | HTML, CSS and Javascript Coding Techniques | 1 | 01-20-2008 09:20 PM |
| Open color picker And choosing,applying a color to a Movie Clip in Flash | oxygen | Flash Actionscript Programming | 1 | 07-25-2007 05:00 AM |
| How to convert hexadecimal value to rgb value in flash? | kingmaker | Flash Actionscript Programming | 1 | 07-24-2007 06:01 AM |
| How can i convert integers to binary or hexadecimal? | prasath | C and C++ Programming | 1 | 07-20-2007 07:31 AM |
| Color scheme | spid4r | HTML, CSS and Javascript Coding Techniques | 0 | 03-08-2007 11:08 PM |