The vco:WebformContainer component adds a Web form to a Web view, for users to complete when they run a workflow or to allow users to provide information to a workflow during its run.

The vco:WebformContainer component defines no properties.

You can use the vco:WebformContainer component with the vco:WorkflowLink component.

To add a vco:WebformContainer component to a Web view, you must also include a vco:IncludeWorkflowHeader component in the <head> tag of the Web view page, as the following example shows.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 

<head>
	<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
	<span jwcid="@vco:IncludeWorkflowHeader"/> 
</head> 

<body jwcid="@Body"> 
	<span jwcid="@WebformContainer"/>
</body> </html>