English 中文(简体)
视窗7中的会议与我现有的PHP网站
原标题:Handling Sessions in Windows Phone 7 with my Existing PHP Website

我想把“视窗7”的申请汇集到我的现有网站。

当时,我的<代码>SESSIONs由PHP处理,但我没有一套关于如何使用<密码> <7<> 应用程序处理届会的术语。

我甚至不敢肯定我会如何从时间上做一个标志,因为我需要以某种安全的方式发送用户名/密码。

目前,我在数据库中储存一个会期,以确定用户是否仍然活跃。

我想对如何做到这一点有所了解。

  • Are there any build in C# .NET functions that are used for handling SESSIONs?
  • How can a secure login be performed from the device?
最佳回答

在项目组合和网络应用方面,会议的概念是服务器与客户之间的关系。 最常见的情况是申请网站的浏览器。

在这一过程中,服务器建立了一个独特的会议设计。 通过违约,PHP利用厨师数据储存这一独一无二的ID;这使它能够在随后的要求中确定已知客户(已设立一期)正在使用服务器。 公共卫生和社会福利部使用储存在具体厨师身上的洗 has( co co被称作PHPSESSID),将任何会议数据与这一要求重新联系起来。

I explain this because you seem to have a misconception about what sessions are - PHP doesn t care that the user agent is on the Windows 7 phone platform, a browser, or any other user agent. If the user agent supports the cookie mechanism configured in php.ini (see second option below), then you may have sessions. Further, sessions are not the purview of the client; the client doesn t know about them or need to know about them (exceptions might apply in some use cases). The server generally manages the relationship between the client and the server, and session-bound data established on the server-side is not available to the client unless made explicitly so.

因此,你再次面临两种选择。 首先,您可以支持C#申请中的ok。 查阅<代码> 缩略语 根据你重建申请的方式以及你重新提出有限制的请求的机制,你可以支持 co。

第二项选择是利用不同的机制跟踪会议。 PHP支持通过URL举行会议,但适用安全考虑。 见文件

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签