# How can I add additional data columns in FormData in Simple mode?

**URL:** https://discuss.workflowgen.com/t/how-can-i-add-additional-data-columns-in-formdata-in-simple-mode/182
**Category:** Visual Studio Web Forms
**Created:** [September 29, 2009, 2:20am UTC](https://discuss.workflowgen.com/t/how-can-i-add-additional-data-columns-in-formdata-in-simple-mode/182 "2009-09-29T02:20:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![wfg-admin](https://yyz2.discourse-cdn.com/flex030/user_avatar/discuss.workflowgen.com/wfg-admin/32/714_2.png) [@wfg-admin](https://discuss.workflowgen.com/u/wfg-admin)
#### Post date: [September 29, 2009, 2:20am UTC](https://discuss.workflowgen.com/t/how-can-i-add-additional-data-columns-in-formdata-in-simple-mode/182/1 "2009-09-29T02:20:00Z")

</div>

### Background

In Advanced Mode, you have to manage the form data structure by defining your own Dataset or predefining your XSD (XML Schema) in Visual Studio at design time. In Simple Mode, the WorkflowGen.My class parses all supported .NET controls (TextBox, Label, etc.) in your web form and automatically generates the FormData context.

### Solution

By taking advantage of the FormData auto-generation by the WorkflowGen.My class, you can add additional data columns to store information (that will not necessarily be available to the end-user) by inserting hidden controls in your web form.

As long as you have a WorkflowGen-supported .NET control in your web form with a valid value, they will be presented in the form data as your desired data column. (See the [WorkflowGen Web Forms for Visual Studio Guide](https://docs.advantys.com/workflowgen-web-forms-for-visual-studio-developer/) for details.)

### Note

The .NET `HiddenField` control is NOT supported. You can use a `Label` control with the `Visible` property set to `False` (`Visible="False"`).
