我正在开发Windows手机上的应用程序。有授权问题。这就是事情。 当我使用用户名和密码向服务器发送登录请求时,如果它们正确,则返回我的id用户并重定向到另一个页面。但是,如果按下"返回"按钮,应用程序将您发送到一个页面,输入一个开头的登录名/密码。问题是这个。如何保存用户的会话?当他留在系统中时返回?你可能需要将id用户留给IsolatedStorage,以及如何与他合作?或许这个问题还有其他解决方案吗? 我欢迎任何建议。
答案 0 :(得分:0)
你在这里问过很多问题..
要存储值(用户ID,密码等),您可以使用IsolatedStorageSettings。
下面给出的代码显示了如何存储来自IsolatedStorageSettings
的值存储
df["value"] = pd.Series(norms)
A B value type
0 A1 B1 0.50 type1
1 A2 B2 0.50 type1
2 A1 B1 0.25 type2
3 A1 B3 0.25 type3
4 A2 B2 0.25 type2
5 A2 B4 0.25 type3
6 A3 B4 0.25 type2
7 A3 B5 0.25 type3
8 A4 B6 0.25 type2
9 A4 B7 0.25 type3
要检索
IsolatedStorageSettings userSettings = IsolatedStorageSettings.ApplicationSettings;
userSettings["userId"] = "213213";
Here它解释了如何使用 string id= (string)userSettings["userId"];
删除堆栈条目(用于处理"返回"按钮问题)