Execute ,Executeglobal is not working ??
Hii all of you,
Actually i want the variables at runtime
Even i got only one value that is "0502000000"
Why not other value "RC"
<%
str="MyFile.asp?FuncCode=0502000000&module=RC"
strval=InStr(str,"?")
dim FuncCode
dim module
Arraystr=Mid(str, strval+1,len(str))
Arrayval=split(Arraystr,"&")
for i=0 to ubound(Arrayval)
temp=split(Arrayval(i),"=")
' //executeglobal( ""&temp(0)&"="&i) it shows bot tbe values "0" and "1"
executeglobal( ""&temp(0)&"="&temp(1))
next
response.write "Original<br>"
response.write FuncCode
response.write "<br>"
response.write module
%>
Even i tried execute() method but not succeed???
Anyone can help me to find out the solution??
Cheers :)
vinod
__________________
Cheers :)
vinod
|