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
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)