这篇文章中,我将创建一个用于将文档添加到工作流的起始页面;一个用于在用户的工作流队列中显示每个项目的“任务”页面;用于定义工作流过程的XML;以及一个负责管理工作流的队列管理器。
起始页面非常简单,在这个页面可以将一个文件以及索引数据添加到工作流中,索引数据会在搜索文档时使用。下面是起始页面的 THML:
<html>
<head>
</head>
<body>
<form method="POST" enctype="multipart/form-data"
action="addDocument.asp">
<input type="text" name="customer_id"
maxlength="10"><br>
<input type="text" name="order_id"
maxlength="12"><br>
<input type="text" name="invoice_no"
maxlength="20">
<input type="hidden" name="ts"
value="
<input type="file" name="filename"><br>
</form>
</body>
</html>