Ticket #449 ( Closed )

Short Description Default asp page location
Entered By: James Peterson When: 2000-02-10 11:08:57 Build: 2.0.7C GA
Categories Type: Question   Department: Product   Category: TN3270 Connection
Description
I have built a new default.stml file for our host. And a 
new .asp page to passthrough the information.

When I use the <TEFORM> tag, one of the parameters is the 
transaction to perform, but I can not find out where to set 
the url of the .asp page to use to display the transaction.

It always goes back to /surfer/form/default.asp.

i.e.:
I connect to the logon screen via an asp page at:
http://server/host.asp

when I hit enter to logon it connects me 
http://server/surfer/form/default.asp?
not to my root website.

Here is my host.asp (copy of default.asp)page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<% Set SS = Server.CreateObject("SSurfer.AspRequest") 
   SS.ForwardFormValues
   SS.Execute(Request.QueryString("cmd")) %>
<% if SS.Field("Status","retcode") = 0 then %>   
   <%=SS.Field("default") %>
<% else %>
   <% SS.ShowAllRecordSets %>
<% End If %>