Vincent Maverick Durano
38 posts.
- Different ways to get Distinct Values from a List<T> using LINQThis article talks about the different scenarios regarding filtering distinct values from the List<T>. One practical example is if you have a list of…
- Programming Problems and Finding SolutionsIt’s been years (8 years to be exact as of this writing) since I am involved in various forums such as (forums.asp.net), (codeasp.net/forums),…
- Xamarin.Android - Syncing data between Wearable and Handheld devicesIn my previous posts I've talked about setting up your development environment to get started with Android development using Xamarin and Visual Studio and…
- New E-Book: ASP.NET MVC Succinctly This book will cover the following topics:
- Getting Started with Android Wearable using Xamarin and Visual StudioWhat are Wearable Devices? The terms “wearable devices“, and “wearables” all refer to electronic technologies or computers that are incorporated into…
- ASP.NET 4.5 - FAQs on SignalR Script ExceptionsASP.NET SignalR is pretty new and very exciting feature in ASP.NET. You might want to play around with it and may encounter some hiccups during your…
- GridView Custom Paging with LINQIn this post we will take a look at how to do pagination in GridView control. Paging is very helpful in presenting huge amount of data in the page because…
- Using ProudMonkey ConfirmBox Control in GridViewThere are times that we need to prompt the users when doing certain actions on the page. One practical example is to confirm the user when deleting a…
- ASP.NET MVC 3 - Creating a Simple Log-In FormThis demo is a continuation of my previous article about "ASP.NET MVC 3: Creating a Simple Sign-Up Form" which I wrote few months ago. Basically in this…
- ASP.NET MVC 3: Creating a Simple Sign-Up FormIn this article I'm going to demonstrate how to create a simple sign-up form using ASP.NET MVC 3. So basically in this demo you will learn the following:…
- Entity Framework - Editing, Updating and Deleting Data in the FormPreviously we've talked about how to fetch the data from the database and populate the form with EF. In this example I'm going to demonstrate how to do…
- Entity Framework - Fetching and Populating the Data in the FormIn Part 1 we've talked about how to insert data to the database with Entity Framework. In this part I'm going to demonstrate how to fetch the data from…
- Uploading Image to a Folder and Display the Image after UploadI wrote a series of blog posts awhile back before that demonstrates the following: - Uploading and Storing Images to Database in ASP.NET
- Uploading and Importing CSV file to SQL Server in ASP.NET WebFormsFew weeks ago I was working with a small internal project that involves importing CSV file to Sql Server database and thought I'd share the simple…
- FAQ: GridView Calculation with JavaScript - Formatting and ValidationIn my previous post here we've talked about how to calculate the sub-totals and grand total in GridView using JavaScript. In this post I'm going take more…
- FAQ: GridView Calculation with JavaScriptIn my previous post I wrote a simple demo on how to Calculate Totals in GridView and Display it in the Footer. Basically what it does is it calculates the…
- New NDepend v3.5 Continuous Integration and Reporting CapabilitiesTwo months ago I blogged about NDepend and it's main features here. Now the NDepend team present the new NDepend v3.5 Enhanced Reports. Check by yourself…
- Inserting Data to Database using LINQ to SQLFew months ago, I’ve created a simple demo about “Creating a Simple Registration Form using the ADO.NET way”. In this article, I'm going to demonstrate…
- Learning ASP.NET: Where to Begin?Technorati Tags: ASP.NET,General I often see questions at forums(http://forums.asp.net) asking stuffs like: - Where to begin? - Where Do I start? - How to…
- Bind DataTable to DataList ControlThis example shows how to bind a DataTable in a DataList control. Just for the simplicity of this demo I’m going to create a dummy data in the DataTable.…
- UPDATED: Adding Dynamic Rows in ASP.NET GridView Control with TextBoxes and with Delete functionalityIn my previous post, I have posted the updated the codes about Adding Dynamic Rows in ASP.Net GridView Control with TextBoxes because there is a bug on…
- Adding Dynamic Rows in ASP.NET GridView Control with TextBoxes and with Delete functionalityIn my previous examples, I have demonstrated on how to add dynamic rows in GridView control with TextBoxes and how to save the values into the database.…
- Validate Image extensions upon UploadIn my previous two examples, we have learned on how to Upload and Save the Image to a Folder and path to database and how to Save the Image to the…
- Uploading and Storing Image Path to Database and Image to Folder - Part 1I decided to write this example because this has been asked many times at the forums. In my previous article I have shown on how to Upload and Save the…
- Save Dynamic TextBox Values from GridView to DatabaseIn my previous article, I have demonstrated on how to add dynamic rows in GridView control with TextBoxes. Now, seems that most of the developers are…
- Uploading and Storing Image Path to Database and Image to Folder - Part 2 (Displaying of Images)In my previous example, we have learned on how to save the actual image to a folder and image path to the database. In this example, I’m going to show on…
- Fill ASP.NET Table with data from DataTable.Few days ago, one of the members at asp.net forums ask if how to display the data that comes from the DataTable to a Table, so I decided to post the…
- Adding Dynamic Rows in GridView with TextBoxesIntroduction: I decided to write this article because this has been asked so many times before at the forums(http://forums.asp.net) . Basically, this…
- FAQ: Calculate Totals in GridView and Display it in Footer - Server side approachI decided to write this post because I always encounter this kind of issue so many times before at the forums. The main question is that they want to…
- FAQ: Displaying Image from Database to GridView ControlI wrote this demo because I observed that lots of people in the forum (forums.asp.net) always ask questions on how to display Image that was stored in the…
- Uploading and Storing Images to Database in ASP.NETThis example demonstrates how to upload image using the FileUpload control and store the uploaded file in the database in binary format.
- Dynamically Adding TextBox Control to ASPNET TableThis demo shows how to generate a Table with TextBoxes dynamically based from the number of Columns and Rows entered from the TextBox control and print…
- Tip/Trick: Show Header and Footer of GridView when no Data returned.This example demonstrates how to show the Header and Footer of GridView when no data returned from the DataSet or DataTable.
- Search ListBox items using JavaScriptThis example shows how to select ListItems in the ListBox based from the TextBox values using JavaScript. Here’s the code block below.
- Adding Default Select Option in the DropDownListThis demo shows on how to add a default Select option in the DropDownList. I decided to write this sample demo because I always encounter this question at…
- GridView Multiple Delete with CheckBox and ConfirmThis demo describes how to implement multiple delete in GridView using CheckBox control and display a confirmation message upon deletion.
- Binding GridView with Data - The ADO.NET wayThis example demonstrates how to populate GridView with data from the database using the ADO.NET way. Before you proceed reading this example be sure that…
- Creating Chart with Aspnet ReportViewer controlIntroduction This article shows on how to generate a chart (a graphical representation of data) using the aspnet ReportViewer control. Basically, this…
