I don't know if I don't have the concept down or not, but I have problems
bringing data in from my database. Okay I have the following code
strVDS = strVDS & "&empName=" &
server.UrlEncode(empDS.tables("employeeinfo"
.Rows(0).Item("firstName"
& "
" & empDS.tables("employeeinfo"
.Rows(0).Item("lastName"
) & _
"&empaddress=" &
server.UrlEncode(empDS.tables("employeeinfo"
.Rows(0).Item("address"
) & _
"&emptitle=" &
server.UrlEncode(empDS.tables("employeeinfo"
.Rows(0).Item("title"
)
Response.Write(strVDS)
In my flash application I am using this command.
loadVariablesNum("flash.aspx", 0);
I have two problems. one if I leave out the Response.Write(strVDS) from my
code it doesn't pull the information into the flash file. Which I don't want
stuff being displayed on the screen and in flash too.
Also on my last variable called emptitle it grabs the information then there
is a line skip and below that is the entire code for the page that is
brought into flash.
Can someone help me get a better grasp on this.
bringing data in from my database. Okay I have the following code
strVDS = strVDS & "&empName=" &
server.UrlEncode(empDS.tables("employeeinfo"
" & empDS.tables("employeeinfo"
"&empaddress=" &
server.UrlEncode(empDS.tables("employeeinfo"
"&emptitle=" &
server.UrlEncode(empDS.tables("employeeinfo"
Response.Write(strVDS)
In my flash application I am using this command.
loadVariablesNum("flash.aspx", 0);
I have two problems. one if I leave out the Response.Write(strVDS) from my
code it doesn't pull the information into the flash file. Which I don't want
stuff being displayed on the screen and in flash too.
Also on my last variable called emptitle it grabs the information then there
is a line skip and below that is the entire code for the page that is
brought into flash.
Can someone help me get a better grasp on this.