BasicProjectLogic.md - brainchildservices/curriculum GitHub Wiki
Slide 1
1. What Are the Basic Functionalities Needed From a Web Application?
- Show Information About the Product, Article. - Eg. Flipkart
Slide 2
In the above example you can see a set of products, it contains the details about the products, such as Photo of the Product, Name of the Product, Price of the product, and a small list of the specifications also. it is showing as a list and its well arranged. Whenever a user enter to the above page There will be a OnGet()
will get executed and and the page will get displayed. This page content can be anything like, An Application form, Article, etc..
If you are Making a WebApp the First Part you should be thinking about how are you going to communicate with the user through the webpage. when someone come to you and ask you to create a webapp for them their main agenda will be grow their business world wide. So it will be better to keep a user friendly structure for the information's, Products, Etc.. Because when a webapp become too complex the use of the Webapp will be less.
Slide 3
As we see in the Above Example Every product in that list can be Edited, Updated and Deleted.
* Update Information.
Edit Information, this section is important if you want to make any changes in your products, information, etc.. Lets say you have a website for storing Teachers details of your institution, you have to change the any details of the teachers like, Mobile Number, Address, Qualification, etc.. you can simply done it by Using Edit information.
as we know every webapp should contain a list of products or information which they want to share with the world, sometimes we need to change the information of a particular product, First thing we have to find the Product/Info from the list available in Show Information.
Example:-
Slide 4
as you can see, the above example is a list of a product/Info. if I want to change any details in that I can go to the edit section, so once you click on the Edit button, a Get method will get triggered and it will take us to the edit page. Once you Load the Edit page you can see the page containing the existing information's as you given already.
For Example, An Edit page Look Like this
Slide 5
Lets Say if you want to edit the mobile number, or any other information you can simply remove the existing info and update it with the latest information and then once you click save button your changes will be reelected.
Edited Details Reflected,
Slide 6
- Details Information.
* Delete Information.
- Delete functionality in Razor page CRUD is used to remove already saved data from the List of data.
- A UI which accecpt Get request to show the delete message , deleting data details and buttons is needed for delete page.
Slide 7
example:
- clicking delete button should delete the Data details shown in delete page, and the respective Id details will be removed from the Data Table.
- Delete button will redirect to index page and give form action result for OnPost.
Slide 8
example: the above shown details got removed here.