An open API service indexing awesome lists of open source software.

https://github.com/nevilparmar11/ce_092_nevil

WDDN Lab Assignments Submission. The site is live on the Azure platform.
https://github.com/nevilparmar11/ce_092_nevil

efcore efcore-dotnetcore mvc netcore sendgrid-api smtp-mail sqlserver

Last synced: about 1 month ago
JSON representation

WDDN Lab Assignments Submission. The site is live on the Azure platform.

Awesome Lists containing this project

README

          

# Project - Inventory Management System

![IMS](https://user-images.githubusercontent.com/48133426/99826337-3cbfab80-2b7e-11eb-9b74-d8e80cdd5de7.jpg)

## 🌐 Live Demo
#### [Visit Demo](https://imsmvcsystem.azurewebsites.net/Account/Login)
Note : The site is up and live on azure platform. Since I am using the free service providers, few funcionalities might not work as expected due to the free subscription quotas and limits.

#### [Detailed Explanation of each features + Live Demo](https://drive.google.com/file/d/1mwveoeOQRKBdXODgOvOU_4EPGmKcsNP7/view?usp=sharing)
#### [Repository of the project](https://github.com/nevilparmar11/Inventory-Management-System)

# Lab - 09
#### [Click here to see the detailed working and explanation of each task of this lab with output. ](LAB_9/Working of Assignment Tasks-WDDN-L9.pdf)
1. [Task 1](LAB_9/Task 1/).

# Lab - 08
#### [Click here to see the detailed working and explanation of each task of this lab with output. ](LAB_8/Working of Assignment Tasks-WDDN-L8.pdf)
1. [Task 1](LAB_8/Task 1/).

2. [Task 2](LAB_8/Task 2/).

# Lab - 07
#### [Click here to see the detailed working and explanation of each task of this lab with output. ](LAB_7/Working of Assignment Tasks-WDDN-L7.pdf)
1. LINQ Demo With Numbers List
- [Task 1](LAB_7/Task 1)

2. LINQ Demo With Human Names (String)
- [Task 2](LAB_7/Task 2)

3. [Task 3](LAB_7/Task 3/).
- Home.aspx - There is one textbox in which the user enters product ID
and press submit button. The control goes to the product.aspx page.
- Product.aspx - This page has a detailed view control which receives product ID from previous page via query string and
displays corresponding product details in detail view control. The details view also has
facility to Insert, Update or Delete product records.
- allproduct.aspx - which displays all product details in Gridview. The gridview has editing, deletion, paging and
sporting facilities.

4. [Task 4](LAB_7/Task 4/).
- Insert.aspx - Insertion of new record.
- Update.aspx : Update the record
- Delete.aspx - Delete the record
- Show.aspx : view all records in gridview with editing, deletion, sorting functionality. Gridview
only displays Student ID and Name. When any record in the gridview is selected, all the
details of the corresponding record with values of all fields are displayed in the details view
control on the same page.

# Lab - 06
#### [Click here to see the detailed working and explanation of each task of this lab with output. ](LAB_6/Working of Assignment Tasks-WDDN-L6.pdf)
1. [Task 1](LAB_6/Task 1/).
- Insert.aspx - This page contains text boxes for adding student details and submit
buttons. When the button is clicked, data is added into the table.
- Edit.aspx : It has one textbox. When a user enters a student ID in the textbox and
clicks on the fetch button, details of that student are fetched in other textboxes on the
same page. After doing editing, when the user clicks on the submit button, the values
are updated in the database.
- Delete.aspx - User enters ID number in the textbox and when clicks the Delete
button, the corresponding record from the database gets deleted.
- Show.aspx : This page displays the content of the student table in the gridview.

2. [Task 2](LAB_6/Task 2/).
- Login.aspx - User id and password is validated against the database. On successful
login, create a session and go to product.aspx page.
- Product.aspx - All available products are listed in gridview with their price. All product
names are also fetched in Listbox from which users can select one or more products
and press the place order button.
- Order.aspx - The order details of the user is displayed ( All items in the order along
with final amount to be paid)

# Lab - 05
#### [Output Images. ](LAB_5/Outputs)
1. Applicataion to demonstrate the use of cookies.
- [Task 1](LAB_5/Task 1)
2. Create demo shopping application
- [Task 2](LAB_5/Task 2)
3. Optional Tasks
- There is a button and label on the page and when button is clicked, the count
is incremented in the label. Make use of ViewState.
- [Task A_Counter](LAB_5/Extra Tasks/Task_A_Counter)
- Pass information of two textboxes from page 1 to page 2 using Cross Page
Posting technique.
- [Task_B_CrossPagePosting](LAB_5/Extra Tasks/Task_B_CrossPagePosting)

# Lab - 04
#### [Click here to see the detailed working and explanation of each task of this lab with output. ](LAB_4/Working Of Projects - WDDN - L4.pdf)
1. Creating and publishing dll file to nuget package manager.
- [Task 1](LAB_4/Task 1)
- [Nuget Package Link](https://www.nuget.org/packages/GraphTraversal.cs/)
2. Task 2
- [Task 2.a => Login Page](LAB_4/Task 2/Task 2.a)
- [Task 2.b => Home Screen with user registration form](LAB_4/Task 2/Task 2.b)
- [Task 2.c => Show/Hide an image on button click](LAB_4/Task 2/Task 2.c)

# Lab - 03
#### [Output Images](LAB_3/Outputs)
1. [calc.cs](LAB_3/Submission/old calc/calc.cs) file which contains two functions addition and multiplication
2. Strong named [key file](LAB_3/Submission/myKey.snk) ( .snk file)
3. [calc.cs](LAB_3/Submission/calc - new version/calc.cs) file new version
4. [Notepad file](LAB_3/Submission/steps.txt) for steps to create strong named assembly calc.dll and deploy it to GAC, steps to create new version calc.dll and upload to GAC.
5. A [config file](LAB_3/Submission/driver.exe.config) which tells the driver program to use version 1.0.0.0 instead of version 0.0.0.0

# Lab - 02
#### [Output Images](LAB_2/Outputs)
1. Two source files [addition.cs](LAB_2/Submission/addition.cs) and [multiplication.cs](LAB_2/Submission/multiplication.cs)
2. [addition.netmodule](LAB_2/Submission/addition.netmodule) and [multiplication.netmodule](LAB_2/Submission/multiplication.netmodule)
3. [A notepad file](LAB_2/Submission/steps.txt) which contains commands to generate netmodule files and to combine them into single DLL file names Calc.dll

# Lab - 01
#### [Click here to see the list of commands used in this LAB](LAB_1/commands.md)
1. Hello World C# Program.
2. Program to add two numbers with user input from console.
3. addition.cs file which contains an additional function to create DLL.
4. driver.cs program which will be used to create exe and which refers addition.dll file.

## Thank You
- Author : [Nevil Parmar](https://nevilparmar.me)