如何使用“启动”按钮启动游戏网站上的按钮?
这是一个在线游戏,我需要在游戏网站上开发一个“启动”按钮来启动客户端游戏。我在几款在线游戏比如这个中看到过这种情况。 这怎么能做到呢?
注:我使用 ASP.NET 来开发网站。
It is an online game, I need to develop a 'Launch' button on the game site to launch the client side game. I have seen this in several online games like this one.
How can this be done?
Note: I am using ASP.NET to develop the website.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果游戏是 .exe,那么您将会因安全问题而遇到麻烦。 (即,如果您可以发出在客户端上运行的命令,您就可以执行病毒等)
如果游戏是在 flash 或 silverlight 中完成的,那么还有其他选择。
If the game is an .exe you're going to have trouble due to security. (ie if you could issue commands to be run on the client you could execute viruses etc)
If the game is done in flash or silverlight then there are other options.
我见过 Java Webstart(jnlp 文件)的类似解决方案。
I've seen similar solutions with Java Webstart (jnlp files).