求助:ASP.NET打包的难题(包含数据库)
需要实现以下功能:
1. It should be an .MSI package that can be installed on a Windows XP Pro PC with IIS preinstalled.
2. If the PC was not installed with .Net 1.1, the package will install it.
3. The package will install SQL Server Desktop Editioin engine.
4. The package will install a database named MOT(Monument Order Tracker) with one table named "order" with:
CREATE TABLE order
(
order_id INT NOT NULL,
order_number INT NOT NULL,
description VARCHAR(100) NULL,
status VARCHAR(15) NULL
)
5. The ASP.NET application contains only one page: order_list.aspx. It lists all records in the table order.