Walkthroughs > Retrieve and Enter Data > Integrate Web and Host Data |
This sample program shows how to get data from a host program and enter it on a Web form. This includes the following tasks:
To build the custom application
http://docs.attachmate.com//prog-demo/enter-data.html
using Attachmate.Reflection.Web.Msie; using Attachmate.Reflection.Framework; using Attachmate.Reflection.UserInterface; using Attachmate.Reflection.Emulation.IbmHosts;
Main method |
Copy Code
|
---|---|
Type your example code here. It will be automatically colorized when you switch to Preview or build the help system.
|
Key Value Pair list variable |
Copy Code
|
---|---|
//Declare this key value pair list to contain data scraped from the screen private static List<KeyValuePair<string, string>> kvp; |
NewScreenReady event handler |
Copy Code
|
---|---|
Type your example code here. It will be automatically colorized when you switch to Preview or build the help system.
|
Example Title |
Copy Code
|
---|---|
Type your example code here. It will be automatically colorized when you switch to Preview or build the help system.
|