A complete ASP.NET-based web application that allows users to browse, register, shop, and securely purchase mobile phones.
PhoneFury is a full-stack E-commerce website built using ASP.NET, SQL Server, HTML, CSS, and JavaScript.
The platform allows users to:
- 🔍 Browse smartphones
- 🛒 Add items to cart
- 🔐 Register & login securely
- 👤 View & edit account information
- 💳 Checkout using Visa / Mada / Cash on Delivery
| Section | Description |
|---|---|
| 🔧 Introduction | Overview of the website |
| 🗄 SQL Tables | Database structure |
| 🔄 Stored Procedures | Backend logic |
| 🔗 Database Diagram | PK & FK relationships |
| 🧭 Master Page | Layout & navigation |
| 🏠 Home Page | Display available phones |
| ℹ About Page | Project details |
| 📞 Contact Page | User inquiry form |
| 📝 Registration Page | Sign up |
| 🔐 Login Page | Authentication |
| 👤 Account Info Page | View/update user data |
| 🛒 Shop-Cart Page | Add/remove items |
| 💳 Checkout Page | Payment functionality |
| Layer | Technologies |
|---|---|
| Frontend | HTML, CSS, JavaScript |
| Backend | ASP.NET (C#) |
| Database | SQL Server |
| Libraries | jQuery |
| Validation | JavaScript + ASP.NET |
| Deployment | IIS / Localhost |
| Version Control | Git & GitHub |
✔ Multiple SQL tables for users, products, orders
✔ Stored Procedures for authentication, cart handling & checkout
✔ PK–FK relationships using ER Diagram
✔ Secure validation & form handling
CREATE TABLE Users (
UserID INT PRIMARY KEY IDENTITY,
FullName VARCHAR(100),
Email VARCHAR(100) UNIQUE,
PasswordHash NVARCHAR(255),
ProfilePic NVARCHAR(255)
);
HomePage
|
Registration
|
LoginPage
|
User Information
|
Shopping Cart
|
Checkout
|





