Thanks again Rob!
Yesterday Lerg showed me a way to solve it with saving the page as html and give a fake page to the user. But I doubted about if I can fill the input of it by that way.
According to your answer, I found a solution with opposite research. So I would like to share it.
I uses Drupal. This content which is about webforms (https://www.drupal.org/node/296453) can show better way but I would like to share my way.
function myApp.enterweb( url) if networkConnection() == true then myApp.webView = native.newWebView(0, 0, display.contentWidth, display.contentHeight-145) myApp.webView:addEventListener("urlRequest", onWebViewEvent) myApp.webView:request( url ) else local alert = native.showAlert( alert,"Check your internet.", { "Ok" }, onAlertComplete ) myApp.showScreen1() end myApp.webView.x = display.contentWidth/2 myApp.webView.y = (display.contentHeight-145)/2+65 end myApp.enterweb("www.asdasdasdasd.com/node/2?testtitle=asd")
In the drupal side of it, you need following modules:
Tokens,
Webview
When you create a new webfrom, enter webfrom tab and in the default value, click tokens and choose [current-page:query:?] and change ? to your value ([current-page:query:testtitle]
In the end, when you redirect the user via webview with ?testtile=value , you will send an information with it.
It doesn’t look like a Corona based solution but Drupal based solution :ph34r: . I am not really sure that this will help about any internet site but I hope this will help to other developers in the future :)