flash data integration:
I'm having trouble getting flash to recognise my asp variables. I only want to
pull out one variable 'sOrganisationName'. Heres my .asp
code----------------------------------------------------------------------------
------------------------------------------------------------
<%@Language='VBScript'%> <% DIM buildSQL DIM dataString DIM orgName DIM
sOrganisationName SET dataString = Server.CreateObject('ADODB.Connection')
dataString.Open application('ConnectionString') buildSQL= 'SELECT value FROM
options WHERE [name] = 'Organisation'' SET orgName =
dataString.Execute(buildSQL) IF NOT orgName.eof THEN
sOrganisationName=('value') Response.Write orgName('value') ELSE
Response.Write('MICAD Host Server') END IF dataString.Close
%>------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Heres what i have in
Flash---------------------------------------------------------------------------
------------------------------------------------------ Frame 1: loadVariables
('forflash.asp', 0, 'GET'); Frame 2: if (oOrganisationName ne '') {
gotoAndStop(10); } Frame 9: gotoAndPlay (2) Frame 10:I have a dynamic text
field with the VAR in the propertys pane set to
'sOrganisationName'.------------------------------ ANY HELP WOULD BE GREATLY
APPRECIATED. Thanks.:D