Share your PC content with Android mobile Ever wanted to share your computer’s videos, images, music and other files with your mobile device? ES FILE EXPLORER has the perfect solution to this situation. With this file manager you can easily share all your computer’s files with your mobile and can do other tasks also. How […]
Author: HITESH VIKANI

Gridview checkbox in Asp.net c#
Gridview checkbox in Asp.net c# Its pretty simple to put checkboxes in gridview control in asp.net. DESIGN OF THE PAGE : Open your .aspx page and add a gridview control like below and its good design 🙂 : add two more controls : Labels and Button to get the values : It should look like […]

Gridview with image in C# byte array
Gridview with image in C# byte array In this post I will be showing how you can display images stored in MS SQL DATABASE TABLE in byte format to C# gridview. (This is Windows form application example and not asp.net) To see the Image to byte conversion and database information view my previous post on […]

GridView with Buttons ASP.NET C#
GridView with Buttons ASP.NET C# First make a gridview in your .aspx page (Design page) Here’s my code : Add Labels like this below it Open your Web.config file and define your connectionString : Open code file .cs file and write the code to fill the GridView Call this method on PageLoad event Add the […]

Connect Android to MS SQL Database.
In this post we will be seeing how you can connect android application to your Microsoft server Database. For connecting Android with MySQL server, see this post. For connecting with MS SQL server we will require the jtds.jar library file . Add this as library to your project. Download Source code. Couple of things first: […]

C# Image to byte array and byte array to image
C# Image to byte array and byte array to image Here’s a simple example about how image can be converted to byte array and stored into MS Sql Database and retrieved back as image. Table: Declaring the connection string for sql connection : Open App.config and add your connection string to it : Design of […]

Import csv file to ms sql server using ASP.NET C#
Import csv file to ms sql server using ASP.NET C# Today I will be showing you how you can import CSV file data into ms sql databases using ASP.NET C# First of all, define your connectionstring in web.config file In Web.config file define your connectionstring : Open your Default.aspx design page and place gridview and […]