I am using WebView LoadHtml method to create a dynamic-html-Entry-form with some query parameters.
Can I store these input values to in B4A variables for further processing ?
html=$"
<html>
<body>
<form >
Name: <input type="text" name="FirstName" ><br>
Email: <input type="email" name="Email"><br>
<button type="button">Next</button>
</form>
</body>
</html>
"$
WebView1.LoadHtml(html)
Can I store these input values to in B4A variables for further processing ?
html=$"
<html>
<body>
<form >
Name: <input type="text" name="FirstName" ><br>
Email: <input type="email" name="Email"><br>
<button type="button">Next</button>
</form>
</body>
</html>
"$
WebView1.LoadHtml(html)