InternetPost-InternetGet alternatives - e.g. Save a variable

General questions about NeoAppBuilder - our rapid application development tool for building HTML5, web and mobile apps.

Moderator: Neosoft Support

Locked
NyperCro
Posts: 21
Joined: Thu Dec 15, 2011 12:53 am

InternetPost-InternetGet alternatives - e.g. Save a variable

Post by NyperCro »

Hello everyone,

Im new to NeoAppBuilder and im trying to build simple SaveVariable to file located on my website.

Since AppBuilder don't support InternetGet-Post, i was wondering what are the alternatives ?

Thx,

Igor
User avatar
Gaev
Posts: 3782
Joined: Fri Apr 01, 2005 7:48 am
Location: Toronto, Canada
Contact:

Re: InternetPost-InternetGet alternatives - e.g. Save a vari

Post by Gaev »

Igor:
Im new to NeoAppBuilder and im trying to build simple SaveVariable to file located on my website.
Since AppBuilder don't support InternetGet-Post, i was wondering what are the alternatives ?
Whenever you Get/Post data between a client and a server, you need an intermediary in the form of a script (.asp, .php etc.) that will accept your request and then fetch/save data 9on the server) requested in the parameter of the url.

Unlike NeoBook, in NeoAppBuilder you do not need a special command because you can invoke your own url (e.g. http://www.igor.com/getAccountName.php? ... umber=1234) ... however, it is easier to use the facilities provided by jQuery ... to learn about jQuery, take a look here ... https://www.w3schools.com/jquery/jquery ... t_post.asp
User avatar
luishp
Posts: 410
Joined: Wed May 23, 2007 10:17 am
Location: Spain
Contact:

Re: InternetPost-InternetGet alternatives - e.g. Save a vari

Post by luishp »

Gaev is right.
Also you can use the NAB Form Object to send data through POST to the server.
You will need a server side script to process the information.
Take a look at the sample application provided with NAB.
I usually use hidden forms whose fields have variables to send data programatically.
Luis Hernández - SinLios Soluciones Digitales
http://sinlios.com
Locked