Javascript to Microsoft Access
-
Hello all,
What i am trying to do is extract layer prices attached to the applet and write them to a database. Something that will allow me to capture a clients configuration. Following is the link to my applet. You will have to login in order to see how the user information is part of the invoice process.
http://mbarnhizersolutions.net/login.asp
user name is "user" PW is 1234
With this applet a person is able to configure his/her cubical desire then selecting the "Get Price" button appears an invoice of what they selected. It is this data, the cost and total i am trying to figure out how to add to the database that is holding the user information.
Fairly certain a server side script will be required here. Anybody got any suggestions?
The code below collects the layer associated cost as the user selects the layer "Computer" from the applet. Anybody have any ideas how i can write this to my database?
if (applet.layerVisibility[applet.getLayerIndex("Computer")]) {
cost += 499;
html += getTableRow("Computer", 499 + ".00");
}
Hopefully i have provided enough to let you see what i'm trying to do......I appreciate all who looks at this.
mike
Advertisement