Create a edit page for ASP.Net Web App

From TRCCompSci - AQA Computer Science
Revision as of 08:35, 18 December 2024 by Admin (talk | contribs) (Created page with "Create a new `razor` page to edit entries stored in a specific database table, ie Customers, Products and so on. Inside the Model (ie .cs file) create a variable to store eac...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Create a new `razor` page to edit entries stored in a specific database table, ie Customers, Products and so on.

Inside the Model (ie .cs file) create a variable to store each field:

int ID = -1;
string Name="";
string Email="";
string Address="";
string TelNo="";