Summary
Generates a rectangular block of HTML that provides pass-through terminal emulation for the screen area specified in the properties
Generating Template
None at the time of this writing - this control is added to web pages using Visual Studio
Source Files
WebControls\FVPassthru.cs and Scripts\FVPassthru.js
Details
The FVPassthru control is a server-side ASP.NET control that works together with the FVPassthru.js file to deliver "slices" of the screen as pass-through terminal emulation areas.
Use the FVPassthru control when a screen has very dynamic fields in one area, where you want to provide your own enhanced fields elsewhere (or your own Action buttons).
Note: any form with an FVPassthru control covering an area with input-capable fields needs to call the SetPassthruFields() FVPage protected method in any Submit action method, as-in the following sample:
protected void btnSubmit_Click(object sender, System.EventArgs e)
{
this.SetPassthruFields(); // Will copy any entry fields to active screen
ActOnState(task.Submit_AcctUpdate(IOBag));
}