从 asp.net JQuery 应用程序准备可执行文件
我想开发我的网站的移动版本,当然有一些非常少的功能。该应用程序将在 iPhone、Android 和黑莓上运行。更好的方法是什么?
- 创建一个 ASP.NET 应用程序并将其部署在服务器上,就像任何其他 Web 应用程序一样,用户可以通过移动浏览器访问链接来访问它。
- 创建一个 asp.net jQuery 移动应用程序并提供适用于 iPhone、Android 和 Blackberry 的应用程序,以便用户可以安装它。比从 Web 服务获取 Web 内容。
我对 approah 2 更感兴趣,因为通过这种方式我可以提供一个可执行的应用程序,我可以将其提供给用户。我的问题是,我已经使用 jQuery mobile 在 ASP.NET 中开发了一个移动应用程序,但我不知道如何用它制作一个应用程序。
有什么想法吗?
Edit1
是否有任何教程演示如何在 PhoneGap 中创建一个应用程序,该应用程序在网络浏览器中打开 URL,而无需知道它是一个网络浏览器 [即隐藏浏览器]
I want to develop a mobile version of my webiste, of course with some very less features. This application will run on Iphone, Android and blackberry. What would be the better way?
- Creating a asp.net application and deploy it on server, just like any other web application and user can access the same by visiting the link from mobile browser.
- Creating a asp.net jQuery mobile application and provide an app for iPhone, Android and Blackberry, so that user can install it. Than fetching the web content from Web Service.
I am more intrested in approcah 2 because in this way I can provide a executable application which I can provide to the user. My problem is this that I have developed a mobile application in ASP.NET with jQuery mobile but I am unaware about how to make an app out of it.
Any idea?
Edit1
Is there any tutorial exists which demonstrate how can create a application in PhoneGap, whoch opens the URL in the web browser without use know that it is a web brower [i.e. hiding the URL bar of the browser]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 IISExpress 或 IIS 嵌入式 Web 核心(Windows 7 的一部分),将您的应用程序作为桌面应用程序进行分发。
但是,如果您想向移动用户提供离线式应用程序来同步来自远程网络服务器的数据,请查看 HTML5 LocalStorage 和离线清单。 (同样的选项也适用于桌面用户,gmail 就是这样做的)
Check out IISExpress or IIS embeddable web core (part of Windows 7) to distribute your application as a desktop application.
But if you want to provide an offline-style application to your mobile users that syncronizes data from a remote webserver, check out HTML5 LocalStorage and offline manifest. (this same option can also work for desktop users, gmail does something like this)
一些用户报告说,他们通过phonegap (http://www.phonegap.com/) 成功地将jquery 移动Web 应用程序封装到本机应用程序(多平台)中。我个人无法保证这一点。请参阅 http://forum.jquery.com/search/phonegap%20mobile 中的讨论。
Several users have reported that they successfully wrapped a jquery mobile web app into a native app (multi-platform) via phonegap (http://www.phonegap.com/). I can't personally vouch for it. See discussions at http://forum.jquery.com/search/phonegap%20mobile.