一个澳洲大学的毕业设计,计算机系,也许你和计算机硕士们只是差一张纸呢,说不准啊,
是英文的形式,但我简单做了翻译,英文和我翻译的同时提供给你们!这个作业时间是两个星期,
但是为了考验大家,两天内有人写出来全部的内容并基本符合我有的答案送这100分,不在于这100分,只在乎大家的能力的一次,树立以下你考研的信心,加油啊,各位!程序是asp.net+sql+xml设计,难度级别中高!一个电子商务系统:
英文作业原文如下:CP688 Assignment 
Due: Week 11
Weight: 40% of final gradeDescription of task:
You are required to develop an online database for something you are interested in, eg: movies, books, music, games etc… An excellent example already exists in the Internet Movie Database (www.imdb.com) and I encourage you all to spend time exploring it for ideas. Your site should be written in ASP.NET and store all persistent data in an SQL Server database.
Required Functionality
Your SQL Server database should store all persistent data for your site, including:
· Product Details
· Product Ratings
· Registered User/Administrator Details
You should submit a database script which populates the tables with at least 25 products (sensible names please) and an administrator plus a registered user.Your assignment should display product information represented in XML format after extraction from the database, and presented with an appropriate XML stylesheet. You are also required to develop an XML Schema for your products.Levels of access
· Public Browsing – anyone can use the site in a read only capacity
· Registered User - users can also register which allows them to submit comments / ratings on the products listed
· Add Product Role / Delete User – Site administrators have the ability to add or delete products, to delete comments and to remove registered users from the systemUsers should be able to locate product in a flexible fashion. For example if my site listed movies:
· List all movies whose title starts with 'A'
· Search by title / director / genre / actor
· Adding together search terms like 'Movies with director like Huston and castmember like Nicholson'Users should also be able to view summary tables such as: 
· Top picks overall 
· Top pick by categoryAssessment
All code must be professionally written (comments and indentation!) and will be ed for
· correctness
· appropriate use of language constructs
· style (commenting, indentation, etc.)
· difficulty (extra s for difficult extensions)In week 2 you will be required to submit 
· your XML schema, a sample XML document and your stylesheetYou also have to submit a report that includes
· the name and a short description of your site
· the description should include at least a user level description (what does the site do?) and a brief implementation description (what are important implementation features?)
· any special features of your site
· workflow or sequence diagram of the site
· description of any classes, pages, and tables usedTask                            Marks                 Due 
XML Schema, 
Document Example and Stylesheet  5                     Week 1 
Product                          25                    Week 2
Report                           10                   Week 1 

解决方案 »

  1.   

    我得翻译如下:
    基本上就是说用asp.net和sql写一个电子商务程序,必须有25个产品,并能显示产品信息和产品等级。
    未注册用户可以访问产品的详细信息,注册用户可以发布和增加自己的产品,管理员有删除和增加用户的能力,并管理用户信息,
    产品的信息必须以xml的形式显示出来,并写出5个xml的风格。
    有搜索功能,可以搜索比如打头为'a'的所有产品(这是难点),按照/ director / genre / actor类别进行搜索,组合搜索,比如作者为a,价格为b的产品信息。
    程序应该有最热门的产品总列表和各个类别的最热门产品列表显示!
    程序必须标上完整地注释,包括正确与否,难点,简单的描述,样式,难点
    最后提交一份报告,包括这个站点的介绍,和未来趋势,功能描述,至少一个注册用户,一个管理员的详细操作说明!并表明所用到的用户和数据表名和你所分得类别!
      

  2.   

    让我想起了我的本科毕业设计,也是asp.net和sql,不过是办公自动化的,没有引入XML!呵呵
      

  3.   

    微软有公开的源码,www.ibuy.com好像比较符合这个要求.自己拿去改改就是了.
      

  4.   

    《asp.net Web站点高级编程》,
    看完之后编这个程序就很简单了
      

  5.   

    www.cncode.com  www.asp.net www.mycodes.net由原代码自己找一个改一改
      

  6.   

    还好了,你是学information system或software engineer的吧,用.net,我学computer science的,我们学校喜欢用java。我觉得还是作业难,修操作系统时要做类似C的malloc功能内存分配,这学期他们修操作系统的要做unix的文件系统。
    借人气我也找一枪手帮我做作业。我已经写了一半,但还有不少问题。感谢各位了。写一个机器人模拟系统,语言不限,2组机器人相互踢球,每组5人。每个机器人由2个轮子控制速度、方向,要考虑加速度,角速度,为简化不要考虑摩擦力,纯软件模拟即可,不是真实的马达系统。具体要求如下
    请参考卡内基梅隆大学(Carnegie Mellon)的类似机器人模拟系统,借鉴一下
    http://www-2.cs.cmu.edu/~trb/TeamBots/   
    Assignment 2 
    Distributed 21st September 2004
    Due Date 19th Oct 2004: 20 s
    Robot Soccer Simulator Write a robot soccer simulator which can simulate a robot soccer game with up to 5 robots on each team (plus ball). The basic model used should be a kinematic model, but one that can also use a dynamic model will be better. Your program will not be as complex as the Teambots simulator, since it does not need to be a general robotic simulator and you are not required to use an initialisation file (such as the Teambots' dsc file), but rather hard code your simulator. However adding features such as unreliable communication between robots, models of sensors, with noise or limited angle of view or distance is encouraged. Your program's simulation engine should be seperate from the graphical display, so that it is possible to run the simulator without graphics and output the system data to a file. This file can then be used (say with matlab) to display graphs of the simulated data. Your program should be able to play the data produced in a simple animation, but this is not expected to be the significant part of the assignment, so minor display problems such as screen flicker etc will not be penalised. The preferred programming language is java, but feel free to use any language you prefer (justify your choice). The grading will be 50% based on your code and 50% based on your documentation. Your documentation should highlight any theoretical issues relevant to your implementation. You should report on any experiments conducted feel free to include screen shots and graphs of experiment data if relevant. Critique and recommendations for improvement are also encouraged. Submit your documentation in a seperate file to your source code. Seminar [Due Date 19th Oct 2004: 10 s] Prepare a seminar (20 mins + 10 mins Q&A) demonstrating your Robot Soccer Simulator and presenting the ideas used. Ideally you should use a computer based presentation (but bring along transparencies as backup). Half s will be for presentation (preparation, clarity and audience understanding) and half for technical content. 
      

  7.   

    《asp.net Web站点高级编程》,
    看完之后编这个程序就很简单了这本书很好啊~!
      

  8.   

    有意者交流!!![email protected]