Advertisement
Guest User

Untitled

a guest
Sep 11th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <%nologin = true%>
  2. <!-- #INCLUDE FILE="../mes_top.asp" -->
  3.  
  4. <%
  5.     function prova(gaf)
  6.         set jj = New JSONobject
  7.         jj.parse(gaf)
  8.         print jj.value("gaf") & "<br>"
  9.     end function
  10.  
  11.     set gg = New JSONobject
  12.     gg.add "gaf","cecco"
  13.     gg.add "ciao","scemo"
  14.    
  15.     call prova(gg.Serialize())
  16.    
  17.    
  18.     function prova2(foo)
  19.         print foo(1) & "<br>"
  20.     end function
  21.    
  22.     call prova2(Array("arr1","arr2"))
  23. %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement