摘要:
一、一个简单的Webservice示例 a. 在数据库中创建一个Database,名为WebServiceDemo,然后创建一个表student,插入相关测试数据。(我使用了4万多条数据,方便下面的比较测试)。 b. 在VS中创建一个Web Service 应用程序,并调加一个 WebMethod:GetDataSet,该方法返回用"Select * From Student"查询得到的Dat... 阅读全文
摘要:
Note: This article is from http://www.51testing.com/ 1. 根据测试范围和测试方法来估计工作量: a)制定测试计划以前,明确测试范围: 不同的测试范围,对测试量的评估起到至关重要的因素,比如说测试一个模块或测试多个模块或测试整个系统等等,都属于测试范围不一样,明显工作量也不同,差别也挺大的。还有测试范围还包括功能性测试范围或非功能性测试范... 阅读全文
摘要:
New in ASP.NET 1. Better language support 2. Programmable controls 3. Event-driven programming 4. XML-based components 5. User authentication, with accounts and roles 6. Higher scalab... 阅读全文
摘要:
When a browser reads a style sheet, it will format the document according to it. There are three ways of inserting a style sheet:External style sheet, Internal style sheet andInline style. Below are t... 阅读全文
摘要:
Merge sort is an O(n log n) comparison-based sorting algorithm. In most implementations it is stable, meaning that it preserves the input order of equal elements in the sorted output. It is an example... 阅读全文
摘要:
Heapsort is acomparison-based sorting algorithm, and is part of the selection sort family. Although somewhat slower in practice on most machines than a good implementation ofquicksort, it has the adva... 阅读全文