Find ASP.NET Controls easily!
Finding Controls in ASP.NET
Find ASP.NET Controls easily!
Find ASP.NET Controls easily!
After lots new coding, refactoring and upgrading to .NET 3.5, dotNetTips.Utility 3.5 is finally released! This assembly is much of the common code I have been writing for the past 8+ years all wrapped up in a nice package and easy to use. Here is just some of what is in the new version:New ClassesEventLogTraceListener … Continue reading dotNetTips.Utility 3.5 Released
If you need to convert a Bitmap to a Byte array, here is how you do it. Public Shared Function ConvertToByteArray(ByVal value As Bitmap) As Byte() Dim bitmapBytes As Byte() Using stream As New System.IO.MemoryStream value.Save(stream, value.RawFormat) bitmapBytes … Continue reading Convert Bitmap To Byte Array