Guest_imported
New member
- Jan 1, 1970
- 0
I have declared my object (COM+) from the beginnig of the page, like this:
<%@ Language=VBScript %>
<%Option Explicit
Dim Darwin
Set Darwin = Server.CreateObject("cmpCOMDarwin.cClients"
%>
I need to pass a parameter from a combolist, so I add this script
<SCRIPT LANGUAGE="VBScript">
<!--
Sub Client_OnChange
<%Set RsProducts=Darwin.SearchProducts (form.cmbClient.value,Session("iduser")%>
'Where form.cmbCountries.Value is the value of the combolist
End Sub
-->
</SCRIPT>
This is not working, please help me, to fix it.
Thank you!
<%@ Language=VBScript %>
<%Option Explicit
Dim Darwin
Set Darwin = Server.CreateObject("cmpCOMDarwin.cClients"
%>
I need to pass a parameter from a combolist, so I add this script
<SCRIPT LANGUAGE="VBScript">
<!--
Sub Client_OnChange
<%Set RsProducts=Darwin.SearchProducts (form.cmbClient.value,Session("iduser")%>
'Where form.cmbCountries.Value is the value of the combolist
End Sub
-->
</SCRIPT>
This is not working, please help me, to fix it.
Thank you!