0nline shopping

32
0nline shopping PRESENTED BY- Ankit kr dubey

Upload: ankit-dubey

Post on 08-Apr-2017

12 views

Category:

Education


0 download

TRANSCRIPT

Page 1: 0nline shopping

0nline shopping

PRESENTED BY- Ankit kr dubey

Page 2: 0nline shopping

FASHION HUB

Page 3: 0nline shopping

The .Net Framework is a safe type environment for Application development and code execution. It full fill all the aspect of program execution.

A set of software routines that provide a foundation structure for an application.

To provide a consistent object-oriented programming environment.

Introduction to .Net FrameWork

Page 4: 0nline shopping

.NET Framework consists of 3 main parts:

Common Language Runtime Framework Classes/Libraries ASP.NET

.NET Framework

Page 5: 0nline shopping

Introduction to ASP.NET .NET is a major technology change for Microsoft and the software world. Just like the computer world moved from DOS to Windows, now they are moving to .NET.

ASP.NET is Microsoft’s platform for developing web applications. Using ASP.NET, you can create e-commerce shops create e-commerce shops, data-driven portal sites, and just about anything else you can find on the Internet.

Page 6: 0nline shopping

Project on

Online Shopping System

Page 7: 0nline shopping

Project DescriptionThis project is a business to Consumer, E-

Commerce web site. There is difference between Web site and a portal .Example of Portal is like Yahoo, and India’s times where as examples of

Web–site is like Delhi hotels ,jobs ahead etc.Portal is general in nature and has many

objectives to accomplish where as Web-site is specific in nature and has only one objective to accomplish hence our project is a website and

not a portal .

Page 8: 0nline shopping

Online shopping is a well-known company serving Indians and others, with a variety of All Products these include laptop, hard disk, Pan drive, cabels,network Cabinets and switches.

This project is that it is a B2C E- Commerce site which means that online money transactions is taking place between Consumer and Business house.

Page 9: 0nline shopping

REQUIREMENTS 

 

Interface Required- Platform Used:- Win Xp Or Higher Version Language Used: - C#.NetDatabase Used: - Microsoft SQL Server Hardware Required-

 Processor: -456 Mhz Or Above Ram:- 128 Mb And Above

Page 10: 0nline shopping

User OperationsUser Registration : A User can register himself to appear in the Any Shopping and may login with his given E-mail Id and password.User’s Login : User’s can Shopping by entering his Email Id and password .Buy Now : The facility provide to User that he can choose the which he wants to Purchase.Get Result : When User finish his Shopping then click to Place order & checkout .Console Returns to Home page of this project.

Page 11: 0nline shopping

Data Flow Diagram

Page 12: 0nline shopping

Master Page:1

Page 13: 0nline shopping

Administrator Log in page:-

Page 14: 0nline shopping

Administrator Product Management Page

Page 15: 0nline shopping

Administrator Product Table

Page 16: 0nline shopping

Registration Table

Page 17: 0nline shopping

Order table

Page 18: 0nline shopping

About us

Page 19: 0nline shopping

Contact us

Page 20: 0nline shopping

Registration Page :-

Page 21: 0nline shopping

Sign in Page :-

Page 22: 0nline shopping

string cnstr = @"Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\customer.mdf;Integrated Security=true;"; string sql = "Select * from details where un='" + TextBox1.Text + "' and pswd='" + TextBox2.Text + "'"; SqlConnection cn = new SqlConnection(cnstr); SqlCommand cmd = new SqlCommand(sql, cn); SqlDataAdapter adp = new SqlDataAdapter(cmd); DataTable dt = new DataTable(); adp.Fill(dt); int c = dt.Rows.Count; if (c == 1) { Session["UN"] = TextBox1.Text; string fn = dt.Rows[0].Field<string>("fn"); string ln = dt.Rows[0].Field<string>("ln"); string sex = dt.Rows[0].Field<string>("sex"); string ttl; if (sex == "MALE") ttl = "Mr."; else ttl = "Ms."; string fullNm = ttl + " " + fn + " " + ln; Session["FullNM"] = fullNm; Label1.Visible = false; Response.Redirect("index.aspx"); }

Connection code :-

Page 23: 0nline shopping

Index Page:-

Page 24: 0nline shopping

Display Product Details

Page 25: 0nline shopping

Delivery Address

Page 26: 0nline shopping

conformation page

Page 27: 0nline shopping

Convenience:

Selection:

Information:

Price:

Availability:

Advantages of Online Shopping

Page 28: 0nline shopping

Hands-

Shipping:

Wait Time:

Privacy:

Many people have fear to disclose personal and private information for security

Disadvantages of Online Shopping:

Page 29: 0nline shopping

CONCLUSION

Page 30: 0nline shopping

FUTURE SCOPE OF PROJECT

Page 31: 0nline shopping

THANK YOU

Page 32: 0nline shopping

Questions

?

?