The standard HTML web pages that ship with BlueZone Web-to-Host can be modified to work with an ASP application.
%> <OBJECT ID="BlueZone Web-to-Host Control Module v3"CLASSID="clsid:037790A6-1576-11D6-903D-00105AABADD3" CODEBASE="../sglw2hcm.ocx#Version=-1,-1,-1,-1" HEIGHT=0 WIDTH=0> <PARAM NAME="IniFile" VALUE="default.ini"> <PARAM NAME="Sessions" VALUE="MD_S1"> <PARAM NAME="MD_DistFile" VALUE="display.e3d"> <PARAM NAME="MD_S1" VALUE="mfdisp1.zmd"> <PARAM NAME="MD_S1_Save" VALUE="Yes"> <PARAM NAME="MD_S1_Var1" VALUE="<%= Username%>"> <PARAM NAME="MD_S1_Var2" VALUE="<%= Password%> %>
The ASP script then substitutes the values for Username and Password from the form for the variable values <%= Username%> and <%= Password%> in the object tag.
<OBJECT ID="BlueZone Web-to-Host Control Module v3"CLASSID="clsid:037790A6-1576-11D6-903D-00105AABADD3" CODEBASE="../sglw2hcm.ocx#Version=-1,-1,-1,-1" HEIGHT=0 WIDTH=0> <PARAM NAME="IniFile" VALUE="default.ini"> <PARAM NAME="Sessions" VALUE="MD_S1"> <PARAM NAME="MD_DistFile" VALUE="display.e3d"> <PARAM NAME="MD_S1" VALUE="mfdisp1.zmd"> <PARAM NAME="MD_S1_Save" VALUE="Yes"> <PARAM NAME="MD_S1_Var1" VALUE="JDoe"> <PARAM NAME="MD_S1_Var2" VALUE="MyPassword">