home » people » Vinz

Vinz

Vincent Maverick  Durano

Profile

Name:
Vincent Maverick Durano
Location:
N/A
Bio:
Working as a SDE at NCR Corporation and specializing on ASP.NET technologies. I am an active forum member and a regular contributor at the official ASP.NET forum site and one of the Top Community member with All- Star recognition level.I voluntarily spent my extra time helping other geeks through forums, blogs and articles. I have been awarded as Microsoft MVP - ASP/ASP.NET for 2009.
Interests:
ASP.NET, Beer, BasketBall, Motorbikes, Music and Guitar

Community info

Member since:
4/15/2009 12:12:23 PM
Rank:
3
Role:
MVP
Total Posts:
171
Total points:
4002

Personal Information

Favorite Music:
Alternative, Reggae, Rock!
Favorite TV Shows:
Legend of the Seeker.
Favorite Books:
N/A
Favorite Cuisines:
N/A
Occupation:
Software Engineer
Sex:
Male
Industry:
Loading ...

Confirm

  • BASIC: Binding ListBox and DropDownList using LINQ
    This example shows the basic way on how to populate data from database to ASP ListBox/DropDownList server control using LINQ to SQL.
    9/1/2009 1:26:11 AM - Comments: 0
  • Removing Columns in DataTable.
    Recently, one of the members in the forum (http://forums.asp.net) is asking if how to remove a particular column in a DataTable if all values in the row of that column are null or empty. So I decided to post the solution that I have provided in that thread as a reference to others who encounter the same problem.
    8/12/2009 3:21:46 AM - Comments: 0
  • Adding Dynamic Rows in ASP.NET GridView Control with TextBoxes and with Delete functionality.
    In 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. Now, seems that most of the developers are asking if how to add a delete functionality with it. So in this example, I’m going to show on how to delete a certain row in the dynamic GridView with Tex
    8/10/2009 2:12:12 AM - Comments: 2
  • Why DataSet creates TableN as the Default table name?
    Few days ago I have encountered a question in asp.net forums asking if why does the DataSet creates a default name as Table1 well in fact the that name doesn’t really exist in the database. So I thought I’d share the answer that I have provided in that thread as a reference to others.
    8/4/2009 12:22:59 AM - Comments: 0
  • Validate Image extensions upon Upload
    In 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 Database. The two previous examples only tackle the basics about uploading and saving a file without validating the file to be uploaded. In this example, I’m going to show on how to validate a file that
    8/3/2009 10:28:21 PM - Comments: 0
  • Uploading and Storing Image Path toDatabase and Image to Folder - Part 2
    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 how to display those images in a GridView and Repeater control.
    8/3/2009 1:18:17 AM - Comments: 0
  • Uploading and Storing Image Path toDatabase and Image to Folder - Part 1
    I 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 Images to Database, In this article I will show on how to upload and save the image to folder and path to database.
    8/3/2009 1:01:39 AM - Comments: 0
  • Save Dynamic TextBox Values from GridView to Database
    In 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 asking if how to save all the data that was entered from the dynamic textbox in the GridView to the database. So in this example, I’m going to show on how to save them all in the database.
    8/2/2009 9:16:36 PM - Comments: 0
  • Sorting GridView Manually with TemplateFields
    I decided to write this example because this has been asked many times at the forums. In this article, I will show on how to sort GridView columns manually using a DataTable.
    7/12/2009 10:09:29 PM - Comments: 1
  • ASP.NET WebPart FAQ
    After a year of answering questions at the WebParts and Personalization forum section, I consider the following items below as “frequently asked questions”. I decided to write this so that I can point them to this post whenever I find a question that can be found here.
    7/9/2009 11:26:00 PM - Comments: 0
  • How To: Bind Collections to a DropDownList Control in ASP.NET
    In this example I’m going to show the basic way on how to bind a different collections to a DropDownList control. Note that you can also apply the code mentioned in this example to a ListBox, RadioButtonList and CheckBoxList. I just used DropDownList for this demo because I think it is the most commonly used in the page.
    7/8/2009 11:56:15 PM - Comments: 1
  • Adding Dynamic Editable Rows in ASP Table with Multiple Delete
    In my previous example, I wrote a simple demo on how to generate rows of TextBoxes in ASP Table on every click of the Button and retain the previous values on postbacks. In this article, I’m going to extend a bit of what I have shown in my previous example.
    7/1/2009 3:13:39 AM - Comments: 2
  • Adding Dynamic Rows in GridView with DropDownLists
    In this example, I will show on how to generate a Row in GridView with DropDownList when clicking a Button that is residing inside a GridView Footer and retain the Selected Items of the DropDownList on postbacks.
    6/30/2009 12:37:02 AM - Comments: 0
  • FAQ: Dynamically Adding Rows in ASP Table on Button Click event
    I decided to write this simple example because I always encounter this kind of issue at the asp.net forums including this thread: http://forums.asp.net/t/1440947.aspx. Basically this demo shows on how to generate ASP Table rows and columns on every click of the Button and retain the entered values on postbacks.
    6/29/2009 12:41:29 AM - Comments: 0
  • ASPNET WebPart FAQ: Accessing Controls from UserControls in ASPX page
    I decided to write this example because I always encounter this type of questions at the asp.net WebParts and Personalization forums. Many of us have used UserControls as WebParts so that we can incorporate different server controls in a single WebPart element and there are times we need to retrieve or pass a value to a Control that‘s inside a U
    6/25/2009 6:48:08 PM - Comments: 0
  • Fetching Data from Database and Populating fields in the Form using LINQ to SQL
    In my previous example I have demonstrated how to create a simple form that would allow users to insert data to the database using L2S. In this example I’m going to demonstrate how to fetch and filter data from database and fill the fields in th...
    3/11/2010 7:34:50 AM - Comments:0
  • Inserting Data to Database using LINQ to SQL
    Few 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 how to create a simple form that would allows users to insert data to the database using L2S. ...
    3/11/2010 7:33:54 AM - Comments:0
  • Learning ASP.NET: Where to Begin?
    I often see questions at forums(http://forums.asp.net ) asking stuffs like: Where to begin? Where Do I start? How to Get Started? So I deciced to write this "boring " post to express my opinion and hopefully this can help beginners fi...
    3/1/2010 7:53:23 AM - Comments:1
  • Pluralsight On-Demand Training library
    Pluralsight is an online .NET Training library which provides online training materials for .NET developers. Example trainings available on demand: ·  .NET 3.5 ·  Agile Team Practices ·  ASP.NET 3.5 ·  ASP.NET AJAX ·  ASP.NET MVC ·  BizTalk...
    3/1/2010 7:51:19 AM - Comments:0
  • FAQ: Cross Browser GridView Fix Header and Footer with ASP.NET Ajax
    Many developers from the forums (forums.asp.net ) are asking if how to implement fix header in GridView while scrolling. We all know that there are lots of examples out there that provide a solution that are available, however some of the solutions pro...
    1/6/2010 11:42:00 PM - Comments:1
  • Rank 3rd at the ASP.NET Community Hall of Fame
    Wheew..looks like i've been so busy lately.. ;)... I never thought I’d achieve this, but I’ve somehow managed to get to the top 3 rank in ASP.NET Community Hall of Fame ..This has been a very rewarding experience [~at least for me :) ]!Honestly, I rea...
    1/6/2010 11:39:34 PM - Comments:2
  • Move Multiple Rows Between GridViews
    This example shows on how to move multiple rows between GridViews. The main idea here is to use a CheckBox control for selecting the rows to be removed from one GridView to another and vise versa. Read More
    10/11/2009 8:22:12 PM - Comments:0
  • Reset Identity Column Value in SQL Table
    Recently, one of the members at forums.asp.net is asking if how to reset identity count in sql table. So I thought of sharing the possible solution that we have discussed in this thread as a reference to others.
    9/10/2009 9:21:41 PM - Comments:0
  • Good News!: SEA MVPs Blog-A-Holic has Officially Launched Today
    Check this out:
    9/7/2009 9:04:45 PM - Comments:0
  • Passing Information form .HTM to .ASPX page in ASP.NET
    Just recently, one of the members at forums.asp.net is asking if how to pass data from .htm page to aspx page. So I decided to share with you of what we have discussed in this thread for a possible solution.
    8/27/2009 2:06:58 AM - Comments:0
4 people found.