All posts tagged 'asp.net'
Importance of Code Quality and Coding Standard in Software Development, and why should every software programmers make it a habit. [More]
Microsoft has been working to improvise .NET and making big changes to it in the year 2020. This blog post summarizes what is coming next in .net core. [More]
DataView RowFilter Or DataTable.Select with DateTime conditions. Best practices using datetime variables in DataTable.Select or DataView.RowFilter conditions [More]
Many email clients such as outlook allows you to request a receipt, this blog explains how to achieve that in ASP.NET System.Net.Mail emails [More]
ASP.NET - login with facebook and graph API. How to implement login with facebook functionality in asp.net website using Facebook Graph API and asp.net. [More]
The post Integration of Bing search API in ASP.NET discusses how to integrate the Bing Search API in asp.net website using Bing Webmaster developer API. [More]
how to track if email is opened or read using asp.net. It can be achieved in html emails by sending a small image called beacon or web bug in email body [More]
How to import bulk data in MySQL database using .net code! it can be done by MySqlBulkLoader class provided in MySQL to .Net connector (MySql.Data.dll) [More]
SqlBulkCopy Class in System.Data.SqlClient namespace lets you efficiently bulk load a SQL Server table with data from another sources like csv, xls etc. [More]
SmtpClient in .net framework 2.0 doesn’t have dispose method which can release connection with Mail server and free up any resources used. [More]