Download Project – SQL DB Query – Responsive Shopping Website using ASP.NET & Bootstrap

responsive website in asp net using bootstrap

This tutorial is about creating stunning responsive shopping website using ASP.NET and Bootstrap, this tutorial covers all the development process from client side to server side. This tutorial series is very useful to those who are developing their academic project.

paytm integration

Read more

How to Calculate Age in C#

This comes tricky when calculating someones age in C# because there is lot of methods and we don’t know which is the best way to calculate age in C#, So here is some methods to calculate someones age in C#. In the example, we have the current date and the dob and with a button … Read more

Send Email with Attachements and Progressbar in C# Windows Form

In this post explains how to send email from your c# windows application with progress bar and attachment, this method uses the smtp feature of email clients.Change the red color text to your credentials.Create a New Windows Form Application File -> New -> Project -> Windows Forms Application Add 4 Textbox for To,Subject,Attachements,Message Add 5 Labels Add … Read more

Add Button,Combobox,Checkbox,Image,Link Columns to DataGridView in C# Windows Form

DataGridView is used to display data in tabular structure in windows forms, DataGridView control is customizable and contains lot more events than any other control. The basic elements of  DataGridView is Rows,Columns,Cell, the default DataGridView cell type is   textbox. The following code explains how to add Button,Checkbox,Combobox,Image,Link column to DataGridView. Create a New Windows Form … Read more

How to Edit and Save Database Table Data without Dropping and Re-Creating Table in visual studio

Save Changes without Dropping and Re-Creating Table in visual studio In Visual Studio when you are dealing with tables in Server Explorer, once you create a table and then you need to change any value in the table data, you will probably get the following error. To solve this error or to edit the table data … Read more