5 pts.
 Use returned function variable in new function vbscript?
ASP
I can't use a variable that is retuned from a Function and place it in a second function, is this not possible? Function MyFunction1(txt)    Replace(txt,"Any","No") End Function Function MyFunction2(txt)    Replace(txt,"No","Any") End Function strTxt = "Any text at all" Str1 = MyFuncion1(strTxt) Str2 = Myfunction2(Str1)  '*** No error but I does not replace the text??? *** Resonse.write Str1 '*** Prints the correct text, has changed Any to No. Resonse.write Str2 '*** Prints exaktly like Str1 even though it should replace No to Any.

Software/Hardware used:
ASKED: April 15, 2010  12:54 PM
UPDATED: April 17, 2010  1:47 AM

Answer Wiki:
Last Wiki Answer Submitted:  Be the first to answer this question.
All Answer Wiki Contributors:  Be the first to answer this question.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

I tried this, and it works:

Function MyFunction1(txt)
MyFunction1 = Replace(txt, "Any", "No")
    'MyFunction1 = "test"
End Function    
Function MyFunction2(txt)
   MyFunction2 = Replace(txt,"No","Any")
End Function
strTxt = "Any text at all"
Str1 = MyFunction1(strTxt)
Str2 = MyFunction2(Str1)
document.write(Str1)
document.write(Str2)
 63,535 pts.