Click here to Skip to main content
16,011,502 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Online System Using Web Technology ??? Pin
Roger Wright16-Jan-03 4:02
professionalRoger Wright16-Jan-03 4:02 
GeneralConsuming Web services from webclient script Pin
Henrik Sternberg14-Jan-03 9:45
Henrik Sternberg14-Jan-03 9:45 
GeneralDetermining the validity of a JavaScript parameter Pin
jerry0davis14-Jan-03 4:41
jerry0davis14-Jan-03 4:41 
GeneralRe: Determining the validity of a JavaScript parameter Pin
jerry0davis14-Jan-03 23:18
jerry0davis14-Jan-03 23:18 
Generaldrilling down to a section of the page Pin
mcm13-Jan-03 23:39
mcm13-Jan-03 23:39 
GeneralRe: drilling down to a section of the page Pin
SimonS14-Jan-03 0:14
SimonS14-Jan-03 0:14 
GeneralUser Authentication Pin
spiridon13-Jan-03 17:35
spiridon13-Jan-03 17:35 
Generaltroubles integrating ASP/Flash loadVariables Pin
devvvy13-Jan-03 8:08
devvvy13-Jan-03 8:08 
Problem integrating Flash-ASP:

1. Flash action script on "Login" button:

on (release) {
loadVariables ( "Login.asp", 0, "POST" );
gotoAndPlay ("LoginStatus");
}



2. action script for Label "LoginStatus"

if (bLoginStatus == 1)
{
gotoAndPlay ("LoginSuccess");
}
else {
gotoAndPlay ("LoginFailed");
}



3. Login.asp - It's just a test script, so, no password matching yet.
I just want to see the effect of changing "bLoginStatus" to 1 or 0 and that it works as intended.

<% response.write "bLoginStatus=1" %>

Yes, this is it. A very simple ASP script isnt it?

4. Observation:
The flash movie always go to the "LoginFailed" frame for some reason...
It does NOT matter if "bLoginStatus=1" in Login.asp

How can you make sure that your variables has been loaded successfully? I tried to make sure there enough time to load variable by adding a while-loop to waste time:

var i
i=0
while(i<100000)
{
i=i+1
}
if (bLoginStatus == 1)
{
gotoAndPlay ("LoginSuccess");
}
else {
gotoAndPlay ("LoginFailed");
}


norm
GeneralRe: troubles integrating ASP/Flash loadVariables Pin
ColinDavies13-Jan-03 8:52
ColinDavies13-Jan-03 8:52 
GeneralRe: troubles integrating ASP/Flash loadVariables Pin
devvvy13-Jan-03 11:02
devvvy13-Jan-03 11:02 
GeneralRe: troubles integrating ASP/Flash loadVariables Pin
ColinDavies13-Jan-03 12:22
ColinDavies13-Jan-03 12:22 
GeneralRe: troubles integrating ASP/Flash loadVariables Pin
devvvy13-Jan-03 14:51
devvvy13-Jan-03 14:51 
GeneralRe: troubles integrating ASP/Flash loadVariables Pin
devvvy13-Jan-03 19:21
devvvy13-Jan-03 19:21 
Generalpage/site cache Pin
Sarvesvara (BVKS) Dasa13-Jan-03 2:53
Sarvesvara (BVKS) Dasa13-Jan-03 2:53 
GeneralRe: page/site cache Pin
Roger Wright13-Jan-03 4:29
professionalRoger Wright13-Jan-03 4:29 
GeneralRe: page/site cache Pin
Sarvesvara (BVKS) Dasa13-Jan-03 19:37
Sarvesvara (BVKS) Dasa13-Jan-03 19:37 
GeneralRe: page/site cache Pin
Roger Wright14-Jan-03 3:28
professionalRoger Wright14-Jan-03 3:28 
GeneralRe: page/site cache Pin
Sarvesvara (BVKS) Dasa14-Jan-03 19:45
Sarvesvara (BVKS) Dasa14-Jan-03 19:45 
GeneralRe: page/site cache Pin
Roger Wright14-Jan-03 21:09
professionalRoger Wright14-Jan-03 21:09 
GeneralRe: page/site cache Pin
Sarvesvara (BVKS) Dasa14-Jan-03 21:33
Sarvesvara (BVKS) Dasa14-Jan-03 21:33 
Generalscrolling text Pin
mcm12-Jan-03 23:39
mcm12-Jan-03 23:39 
GeneralRe: scrolling text Pin
SimonS12-Jan-03 23:58
SimonS12-Jan-03 23:58 
GeneralRe: scrolling text Pin
benjymous16-Jan-03 0:22
benjymous16-Jan-03 0:22 
GeneralASP - access database Pin
Sarvesvara (BVKS) Dasa12-Jan-03 23:27
Sarvesvara (BVKS) Dasa12-Jan-03 23:27 
GeneralRe: ASP - access database Pin
Michela13-Jan-03 0:23
Michela13-Jan-03 0:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.