You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
692 B

public class vb_addparam2
inherits OboutInc.oboutAJAXPage
public function onAddParam(byval Param1 as string, byval Param2 as string, byval Param3 as string, byval Param4 as string, byval Param5 as string, byval Param6 as string, byval Param7 as string, byval Param8 as string, byval Param9 as string, byval Param10 as string) as string
dim j as int32 = 0
dim result as string
if Param1 is nothing
return ("No parameter has been added after the last callback.")
else
j=j+1
result = "This data is returned from the server.\n\nThe parameter list is:\nParam1: " + Param1 + "\n"
if not Param2 is nothing
j=j+1
result = result + "Param2: " + Param2 + "\n"
end if