上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: Basic Concepts 基本概念The following article will show you the important basic concepts for Photon. 以下是要告诉你的Photon重要基本概念Applications 应用程序An Application is the server side logic for a game. All features of a game (e.g. remote procedure calls, data storing, etc.) are implemented in a Photon application. . 阅读全文
posted @ 2013-05-15 13:35 M守护神 阅读(994) 评论(0) 推荐(0) 编辑
摘要: Base Applications 基本应用程序The Photon Server SDK includes several applications that should provide a good starting point for your own development. What each SDK does and for which game-style it might be a useful basis is described below. 以下是Photon服务器SDk包含的内置应用程序,可以作为你的应用的开始点。 LiteThe Lite Application . 阅读全文
posted @ 2013-05-15 13:34 M守护神 阅读(1028) 评论(0) 推荐(0) 编辑
摘要: Starting Photon in 5 Minutes 五分钟内开始Photon is extremely easy to install and start. The SDK includes ready-to-use binaries which can be up and running within 5 minutes. Photon是非常容易安装和启动的,SDK中包含了可用的二进制文件,5分钟内即可启动运行Download 下载The Photon Server SDKs are available on our website:www.exitgames.com/Downloa. 阅读全文
posted @ 2013-05-14 08:25 M守护神 阅读(1230) 评论(0) 推荐(1) 编辑
摘要: Requirements 需求For developing and setting up your own server the following additional software is needed: 为了开发和配置你的服务器,以下软件是必需:Operating System to Run Photon Server 运行Photon服务器操作系统Windows XP, Windows Vista, Windows 7 or Windows 8recommended development OS(开发环境系统): Windows 7 x64recommended productio. 阅读全文
posted @ 2013-05-10 08:27 M守护神 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 概述 Grid中显示的数据都是存放在Store中,当我们需要处理Grid中的数据时我们必须获取到当前Store中的数据才能进行后续的操作。以下的方法是通过Store的数据提交事件来获取Store中的数据。前端页面代码后置页面代码protectedvoidSubmitData(objectsende... 阅读全文
posted @ 2013-05-09 11:54 M守护神 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 概述ExtNet控件在自定义控件中使用存在很多的问题,由于ResourceManager控件在页面中必须唯一存在,所以自定义控件中无法使用从而导致Ext控件无法使用js句柄调用后置页面中的方法,我也曾尝试使用ajax的方式调用后置页面中的方法但是执行失败,此时我便想到了使用js代码调用webserv... 阅读全文
posted @ 2013-05-09 11:53 M守护神 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Ext环境下无法使用传统的.net方式实现文件下载,要么点了下载按钮无反应要么出现乱码。原因分析 由于EXT.NET在后台对前台进行操作,依赖的是Extjs,也就是它会向前台输送Javascript脚本代码,如果采用传统的页面内文件下载的方式就会向前台输送一个文件流,那么Extjs就... 阅读全文
posted @ 2013-05-09 11:49 M守护神 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: Feature Overview 功能概述Photon is areal-time socket serveranddevelopment frameworkthat is fast, simple to use and flexible. Client SDKs are available for all major platforms: Photon是一个快速、简单、灵活、实时的Socket服务器和开发框架,客户端SDK可用于以下平台:The Photonhigh level architecturelooks like this: Photon的高级架构体系:Basic Archit.. 阅读全文
posted @ 2013-05-07 20:46 M守护神 阅读(1541) 评论(0) 推荐(1) 编辑
摘要: Introduction 介绍Welcome to thePhoton Serverdocumentation. If you are looking for the Photon Cloud documentation, please go overhere. —— Photon云文档The documentation is split into three topics:Getting Started,Tutorials,References. Just head over there using the links below and take a look. You will alwa 阅读全文
posted @ 2013-04-24 22:01 M守护神 阅读(1772) 评论(0) 推荐(0) 编辑
摘要: HTTP是什么? 我们见过的大多数网站可能都是“WWW”开头的,但是一个完整的地址是这样的:http://www.baidu.com/ HTTP的全称是HyperText Transfer Protocol(超文本传输协议),超文本是一种带有链接的文本,而传输协议是一种获取一些东西从一个地方到另一个地方的规则,这些规则是为了传输页面到你的浏览器。客户端和服务端的关系 我们可以使用HTTP去抓取互联网上的任意网页上的信息,这些网页是来着互联网上的其他计算机,而这些计算机就是我们所谓的服务器。 互联网上到处都是客户端和服务器,客户端请求一些资源,例如网页、文件等等,服务器储存了这些信息,当... 阅读全文
posted @ 2013-04-24 21:58 M守护神 阅读(3380) 评论(0) 推荐(0) 编辑
摘要: DataGridView是.NET开发中常用的控件,在开发中发现大文本数据显示时无法在界面上完全显示,以下是我的解决方法。首先要保证单元格的为Text类型在程序中加入以下的代码片段1 //设置数据源 2 this.dataGridView1.DataSource = dt;3 //设置自动... 阅读全文
posted @ 2013-01-23 15:35 M守护神 阅读(2684) 评论(5) 推荐(0) 编辑
摘要: (1)连接字符串Excel97-2003:Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+ filePath +";Extended Properties='Excel 8.0;HDR=False;IMEX=1'Excel2007:Provider=Mi... 阅读全文
posted @ 2013-01-23 15:25 M守护神 阅读(1164) 评论(0) 推荐(0) 编辑
摘要: 在某些特定的场合下,可能需要程序只运行一个实例,又称单例运行。usingSystem.Windows.Forms;usingMicrosoft.VisualBasic.ApplicationServices;publicclassProgram:WindowsFormsApplicationBase... 阅读全文
posted @ 2013-01-23 15:24 M守护神 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 一个侠客需要一把绝世好剑。 我是一个.Net开发者,而.Net开发的最佳平台非Visual Studio莫属,下面简称其为VS。今日我将我的绝世好剑拿出来与诸位分享,作为一个新手有写的不好的地方请诸位见谅。 这是一篇入门级的技术分享,献给那些想开始学习.NET的朋友们,喷子请绕路。(1)新建... 阅读全文
posted @ 2013-01-23 15:19 M守护神 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 桥接模式,连接到物理网络,虚拟网和真实网为同一个网络NAT模式,使用已共享的主机IP地址,虚拟网和真实网是共享的Host-Only模式,和主机共享一个私有网络,虚拟网和真实网是分离的指定虚拟网络,可以指定其他自定义的连接方式,但是原理属于以上几种模式。 阅读全文
posted @ 2013-01-19 16:38 M守护神 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页