Develop an ASP .NET Web Form application for Inventory management.
Implement below functionality of the business:
1. Application should be accessible only to authorized users. Implement Login page.
2. Any user should not access the web forms without authentication. System should redirect the web page request to "Session Expired/Access Denied" page.
3. Created required database tables in SQL Server. Application should able to connect the database server using configuration.
4. The application will manage the master data of Products and the product transactions.
5. Create a master module to manage Products.
a) Initially all products should be displayed in grid format.
b) on the Grid view page, provide "Add New Product" button to create new record of product.
b) On each row Edit and Delete buttons (icons) should be provided to perform Edit or Delete operation.
c) Create Date entry form to create new product and use the same form to edit an existing record.
d) On each operation, the status (Success or Failure) should be displayed on the top of the page.
e) Form values should be validated before submitting to the server. Implement Validator controls.
f) expected fields for product are: Id(PK), Code, Name, Description, Rate, AvailableStock
6. Create a transaction module for sale/order of the product from the customer.
a) Create a WebForm to place an order. A Single order may have multiple products with respective quantity as ordered by customer.
b) To calculate the sale amount of each ordered product the rate should be referred from Product master.
c) Validate the ordered quantity as the available stock of respective product. System should give valid message if product is out of stock.
d) While placing an order capture fields like: Date, CustomerName, Address, EmailId, ContactNumber, List of Products- Product, Qty, Rate, Amount, Total billed amount. (Order Payment required is ignored here.)
e) After successful entry of order show the...
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.