Posts

Showing posts from May 1, 2012

Best site to download ebooks of c# ,asp.net and sql server

this one is the best line to download c#,asp.net and Sql sever ebooks http://www.free-ebooks-download.org/free-ebook/

Create Thumbnail for large image in C# in 1 line of code

//import these file in you application using System.Drawing; new Bitmap("image to generate thumb").GetThumbnailImage(100, 100, null, IntPtr.Zero).Save("where to save image"); "image to generate thumb" is your Image path for which you want to generate thumbnail "where to save image" is the location with name of thumbnail

Get the cursor postion in Browser

<script language="javascript"> document.onmousemove=currMousePositionOnScreen; function currMousePositionOnScreen(event) { e = event || window.event; var x=e.pageX; var y=e.pageY; } </script>

Crop image using c#

   Bitmap bmpImage = (Bitmap)Bitmap.FromFile("Path Of image to crop ");  Bitmap bmpCrop = bmpImage.Clone(new Rectangle(left,top,right,bottom), bmpImage.PixelFormat);  bmpCrop.Save("path to save cropped image");  bmpCrop.Dispose();  bmpImage.Dispose();

Call Your javascript function of page load

<script type="text/javascript">      window.onload = PrintOnLoad; </script> <script type="text/javascript"> function PrintOnLoad(){    alert("Vijay Tamar"); } </script>