Author Archives
Senior Software Engineer
-
Asynchronously upload multiple photos to Azure blob container
In this post we are going to see how to asynchronously upload photos to an Azure blob container while at the same time, displaying the upload status for each photo. If you aren’t familiar with Azure Storage Services or even… Read More ›
-
Insert millions of records in SQL Server table at once
In this post we will see how to insert a really large amount of records in a SQL Server Table at once. I decided to write about this cause recently I found myself having difficulties while trying to deploy a… Read More ›
-
ASP.NET Web Form User Controls – How to use them
Web Form User Controls are special ASP.NET controls that enables you to dynamically load and add reusable content to your page. Most developers are probably use them in the same way you can add any ASP.NET server control to your… Read More ›
-
SqlCommands: What to choose between SqlDataAdapter, ExecuteScalar and ExecuteNonQuery
SqlCommand class can be used in various ways to access database data and it’s true story that many developers are somehow confused in which one to choose each time the want to execute queries in the SQL Server. In this… Read More ›
-
Ajax enabled lists using the Ext.NET component framework
As you may know, there are many UI frameworks available, that you can make use of in order to create richable user interfaces for your application. Default ASP.NET controls such as ListView or GridView are really good and easy to… Read More ›
-
Asynchronous programming using Tasks
Asynchronous programming model allows you to run and complete several tasks in a parallel way. Using this model can make your applications more responsive (non-blocking) but make no mistake, it’s a tricky road to follow. There are few different models… Read More ›
-
URL Rooting in ASP.NET (Web Forms)
If you are an ASP.NET MVC developer, you will certainly be aware of its default URL Routing behavior, where if for example you were to display a View named “Index” that was relying in a controller named “ProductsController”, you could… Read More ›
-
Batch queries, Multiple Result Sets and Parameterized Queries in ADO.NET
Requesting SQL Server for multiple results is a very common scenario while programming. Instead of asking for records with a single SELECT statement, you may find yourself want to retrieve multiple results in a single Query. For example, consider that… Read More ›