ADS

Tuesday 26 January 2021

How to create Family Expense Tracker Web Application in ASP dot NET

 How to create Family Expense Tracker Web Application in ASP.NET Using C# & SQL server Database.

HELLO  Lovely People !

Family expense tracker Project:

Family expense tracker is a mini project created in asp.net C# with SQL Server Database.

Home Expense Tracker asp dot net project


 Step 1- Create Database : 

--------------------------------------

create table tblExpenseType

(

ExpenseTypeID int identity(1,1) primary key,

ExpenseType nvarchar(50)

)


create table tblExpSubType
(

ExpSubTypeID int identity(1,1) primary key,

ExpenseTypeID int ,

ExpSubType_Desc nvarchar(50)

)

create table tblAllExpenses
(

ID int identity(1,1) Primary key,

ExpenseTypeID   int,

ExpSubTypeID    int,

Description     nvarchar(50),

Amount          decimal(18,3),

DateOfPayment   datetime,

CreatedBy       nvarchar(50)

)


Step 2-: Create Login Page:


Watch Full tutorial Home Expense Project Part-1                           watch below




DOWNLOAD SOURCE CODE   

                   Download

DOWNLOAD 


  Family Expense Tracker Application                  Watch Part-4:
---------------------------------------------------------------------------







No comments:

Post a Comment

Popular Posts