数码配件淘宝客网站程序的开发

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:

数码配件淘宝客网站程序的开发(任务书,开题报告,中期检查表,毕业论文,13000字,答辩评审表,源程序,数据库)
摘  要
随着网络的普及,网上“淘宝”成了人们购物的新途径。对于买家,面对成千上万网店看似同样的商品,如何确认哪家的品质好成了网上购物的一大难题。而对于卖家,网上卖东西,相比网店“自吹自擂”,网友善意的推荐似乎更加容易获取信任。于是就出现了“淘宝客”这一个新的概念。
数码配件淘宝客程序主要是面向热衷于数码产品同时又喜爱网购的人群开发的。这个程序比目前综合性很高的淘宝客程序更具有针对性,能让数码产品热爱者更加方便快捷的获取到自己关心的产品信息。
数码配件淘宝客程序的设计主要包括:1.数码配件商品信息、卖家信息在网页中的显示;2.对数码配件商品信息、卖家信息的检索;3.对表格中的数据进行快速检索以及排序。
本程序使用C#语言,利用Visual Studio2008开发工具在.net framework平台上实现了要求的基本功能。在API调用端向API服务器发送http请求,远程调用API接口,API服务器接受请求后,返回 XML类型的业务数据,再将得到的XML类型的业务数据进行解析,将解析后的数据在网页中显示出来,从而实现基本要求。利用Jquery技术实现对表格中数据的快速检索及排序。

关键词:C#,API接口,XML,Jquery

ABSTRACT
Along with the network popularization, online shopping became the new ways people shopping. People For buyers,how to determine which good quality became online shopping a difficult problem when they see lots of the same goods online.For sellers, online sell things, compared to boast themselves online,well-meaning recommend seems more accessible trust. Then appeared "TaoBaoKe" that a new concept.
The Digital Accessories of TaoBaoKe Program is designed for the people who interested in digital products and loved the development of online shopping.This program than current comprehensive high TaoBaoKe program,it can let more with pertinence of digital products of more convenient for lovers get the information they care about.
The Digital Accessories of TaoBaoKe Program design includes: 1. Digital accessories commodity information, sellers information in a web page display; 2. The digital parts commodity information, sellers information retrieval; 3. The data to form fast information retrieval and sorting.
This procedure using c # language, using Visual Studio2008 development tools in the.net framework on the platform of the basic function of realized requirements. In the API calls to the API server to send an HTTP request, a remote calls API interface, API servers accept request, return to XML types of business data, again will get XML types of business data analysis, will parse the data shown in the web page, so as to achieve the basic requirements. Use the Jquery techniques to realize the quick retrieval table and sorting data.
Key words: C#,API Interface,XML,Jquery
 
数码配件淘宝客功能需求分析
4.1.2.1商品信息显示功能
要求完整的显示出商品信息,包括商品的图片、价格、邮费、名称、卖家昵称、地点、信用、类型、好评数、是否打折以及30天内的交易数量。
4.1.2.2用户信息显示功能
要求完整的显示出用户信息,包括卖家昵称、地点、好评数、总评数、类型以及信用。
4.1.2.3对商品信息的检索功能
要求对输入的关键字进行匹配,并将符合条件的商品信息完整的显示出来,包括商品的图片、价格、邮费、名称、卖家昵称、地点、信用、类型、好评数、是否打折以及30天内的交易数量。
4.1.2.4对用户信息的检索功能
要求对输入的关键字进行匹配,并将符合条件的用户信息完整的显示出来,包括卖家昵称、地点、好评数、总评数、类型以及信用。
4.1.2.5表格中快速检索功能
要求对输入的关键字进行匹配,并将表格中符合条件的信息完整的显示出来,包括商品信息或者对于的卖家信息。
4.1.2.6表格中排序功能
能对表格中的数据按升序或者降序进行排序。

数码配件淘宝客网站程序的开发
数码配件淘宝客网站程序的开发
数码配件淘宝客网站程序的开发
数码配件淘宝客网站程序的开发

#p#副标题#e#
目  录
摘  要    I
ABSTRACT    II
第1章  绪论    1
1.1 系统简介    1
1.2 开发的意义    1
第2章  开发环境及实现技术    2
2.1 开发环境    2
2.1.1 硬件系统    2
2.1.2 软件系统    2
2.1.3 网络环境    2
2.2开发工具简介    2
2.2.1  visual studio2005工具简介    2
2.3 实现技术    3
2.3.1 C#编程技术    3
2.3.2 TopAPI    4
2.3.3 Jquery    4
2.3.4 CSS    4
第3章  需求分析    5
3.1 数码配件淘宝客需求分析    5
3.1.1架构需求分析    5
3.2 数码配件淘宝客页面需求分析    5
3.3 数码配件淘宝客功能需求分析    5
3.1.1信息显示    5
3.3.2信息搜索    5
3.3.3表格搜索    5
3.3.4表格排序    5
第4章  概要设计    6
4.1 概要设计说明    6
4.1.1 概要设计过程    6
4.1.2 数码配件淘宝客功能需求分析    8
第5章  详细设计    10
5.1 熟悉OPEN API文档    10
5.2调用API接口获取淘宝开放平台数据    10
5.2.1 发送http请求至API服务器的过程    10
5.2.2 API服务器返回业务数据过程    11
5.2.3解析返回的业务数据    12
5.2.4 对解析出来的数据进行处理    12
第6章  系统实现与测试    15
6.1 页面测试    15
6.2 功能测试    15
6.2.1搜索功能测试    15
6.2.2表格数据快速查找    16
6.2.3表格数据排序功能测试    17
6.2.4 测试报告    18
结  论    21
参考文献    22
致  谢    23