MySQL Forums
Forum List  »  PHP

Re: Web Interface
Posted by: Nancy LaPoint
Date: July 25, 2005 07:57AM

Here's more information for the question I've written above.... I'm not connected to the company server so it's very difficult to tell if I'm translating well, and they're not going to give me access to their serve until i can show them I can do the job...blah blah blah....anyway.....

Given the script below, am I assuming correctly that if I change the $RUNAT=Server to localhost I'd be able to test it here on my machine?

<$SCRIPT $LANGUAGE=$VBScript $RUNAT=Server>;
function $Session_OnStart {

session.$timeout = 120;

Server.$ScriptTimeout = 240;

Session("LoginState") = False;
Session("AcctNumber") = "";
Session("AcctMgrID") = "";
Session("Feedback") = True;
Session("ShopCart") = "<Cart />";
Session("ShipCode") = "00";
Session("AltCount") = 50;
Session("ShowQty") = False;
Session("ShowWeight") = False;
Session("LoginFail") = False;
Session("AdminFlag") = False;
Session("LineItemCounter") = 0;

}
</$SCRIPT>;

<$SCRIPT $LANGUAGE=$VBScript $RUNAT=Server>;
function Session_OnEnd {
}
</$SCRIPT>;

<$SCRIPT $LANGUAGE=$VBScript $RUNAT=Server>;
function Application_OnStart {
}
</$SCRIPT>;

<$SCRIPT $LANGUAGE=$VBScript $RUNAT=Server>;
function Application_OnEnd {
}
</$SCRIPT>;

Options: ReplyQuote


Subject
Written By
Posted
July 25, 2005 07:44AM
Re: Web Interface
July 25, 2005 07:57AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.