Asked by:
invoice application

Question
-
User-260039228 posted
Hello all,
I ama student learning .net using online videos, I have been practising quite a few applications (small ones though), now trying to create a basic application for creating invoices...just a simple one...not user login or anything just something with list screen, edit screen, how to add invoice, adding new services, etc etc.,
Any examples or link on how to start off with would be really appreciated. It could be any language like vb.net, c#,...
Thanks alot.
Priya R
Wednesday, March 11, 2020 11:01 PM
All replies
-
User-1330468790 posted
Hi, priyareddy2017,
According to your description, what you need should be a complete project with the functionalities such as displaying/editing/deleting the information (List or other format).
You can achieve that within several kinds of approach like Webform, Razon Pages with MVC.
However, Razor Pages is a more modern alternative for building web apps which is recommended.
Introduction for them, see below link:
https://dotnet.microsoft.com/apps/aspnet/web-apps
https://dotnet.microsoft.com/apps/aspnet/web-forms
Tutorial for webforms: ContosoUniversityModelBinding
This tutorial uses some server controls to display and edit the data about the students. What's more, you will learn how to use model binding with an ASP.NET Web Forms project.
Application Sample:
Tutorial for MVC5: ContosoUniversity
Similar to webforms, this tutorial is provided for learning how to build an ASP.NET MVC 5 application that uses Entity Framework 6 for data access. When complete the project, you will be able to view and update student, course, and instructor information.
Application Sample:
Hope this can help you.
Best regards,
Sean
Thursday, March 12, 2020 7:03 AM -
User2041008840 posted
start with asp.net core mvc
Do scaffolding
and you will get all database created on
with html pages , and controller
watch the videos on asp.net core mvc on youtube.
its take 5 minute to create crud operatoinFriday, March 13, 2020 9:07 AM -
User-260039228 posted
Thanks will i be able to do it in visual studio community 2019
Friday, March 13, 2020 8:27 PM -
User-1330468790 posted
Hi, priyareddy2017,
Absolutely you can build these projects using VS community 2019.
Best regards,
Sean
Sunday, March 15, 2020 6:56 AM