如何将1个文本框值连接到url

时间:2013-11-29 09:34:45

标签: livecode

  local custid 
  put the text of field "txtcustid" into custid

  put the URL"http://htp2.hitecpoint.in:98/api/live/"+custid  into tPreferencesFile

您好朋友我正面临livecode问题。我想将文本框值合并到一个网址中。 我把textbox的值放在变量中。我收到错误“按钮”按钮“:第32行执行错误(操作符+:左操作数错误),字符15”。请帮忙。

1 个答案:

答案 0 :(得分:3)

local custid 
put the text of field "txtcustid" into custid

put URL("http://htp2.hitecpoint.in:98/api/live/" & custid)  into tPreferencesFile

(LiveCode使用'&'将值加在一起而不是'+')