Posts

Showing posts from May, 2013

Save Insert Export Import Excel Data Into Sql Server SqlBulkCopy ASP.NET

This post explains How To Save Insert Or Export Import Excel Data In to Sql Server Database Table Using SqlBulkCopy In ASP.NET First of all create a Excel workbook as shown in image below and insert some data into it. Export Import Insert Excel Data Into Sql Server Using SqlBulkCopy Create a table in SQL database with following schema Now write this code to insert data into SQL table public partial class _Default : System.Web.UI.Page { string strConnection = ConfigurationManager.ConnectionStrings ["ConnectionString"].ConnectionString; protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { //Create connection string to Excel work book string excelConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\Details.xls; Extended Properties=""Excel 8.0;HDR=YES;"""; //Create Connection to Excel work book OleDbConnection excelConnection = new OleDbConnection(excelConnecti...

Javascript Get User IP Address, Latitude, Longitude, Country, City, State Details

Javascript Get User IP Address, Latitude, Longitude, Country, City, State Details By: Suresh Dasari Jan 24, 2013 Categories: Asp.net , General , IP Address , Javascript Introduction :  Here I will explain how to get user current location details IP address, country, city, state, latitude and longitude using smart-ip json url in JavaScript  using asp.net  in C# , VB.NET . Description :    In previous articles I explained jQuery Shake image on mouse over , jQuery upload multiple files using multiple file upload plugin , jQuery fancy switch on and off effects example and many articles relating to JavaScript , jQuery , asp.net . Now I will explain how to get current user location details IP address, cou...

Asp.net Export WebPage with Images to PDF using iTextSharp in C#, VB.NET

Image
Asp.net Export WebPage with Images to PDF using iTextSharp in C#, VB.NET By: Suresh Dasari May 17, 2013 Categories: Asp.net , C#.Net , ExportGridviewData , Gridview , PDF Viewers , VB.NET Introduction : Here I will explain how to export webpage with images to PDF in  asp.net   using iTextSharp  in c# , vb.net . Description : In my previous articles I explained clearly Export gridview data to excel or word , Export gridview data to CSV file , Export Gridview data to pdf in asp.net , upload data from excel to sql server database , Export selected rows of gridview to exc...