hi all. How can i generate a dynamiccal html code in iphone like below:
NSString sHtml = @"<html><form name= \"PIOform\" >\
<input type=\"text\" name=\"txtUserName\" >\
<input type=\"text\" name=\"txtPassWord\" >\
</form>\
<input type=\"button\" onclick=\"goCallLogin(PIOform)\" >
</html>";
Yes, I want to create an UI iphone application with feature like a client HTML form to call a javascript method in any server: When i click a button in iphone. It will call goCallLogin(PIOform) method in JS at address: http;//www.myserver.com/login.js
How can i do? Thank you