Difference between revisions of "Create a edit page for ASP.Net Web App"
(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...") |
(No difference)
|
Revision as of 09:35, 18 December 2024
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="";