我只想保存一個類的實例在cookie中只是爲了檢查一些東西。 這裏是我的代碼我如何保存在cookie中的東西c#asp.net
class khurram {
khurram k1= new khurram();
HttpCookie tcook = new HttpCookie("test");
tcook.Value = k1;
}
但 'tcook' 不存在。我做錯了什麼,我不明白。
我也嘗試
[serializable]
class khurram {
public string str1{get;set;};
}
khurram k1= new khurram();
HttpCookie tcook = new HttpCookie("test");
tcook.Value = k1;
請幫助。 由於事先
這裏是一個類似的問題[一個鏈接](http://stackoverflow.com/questions/6617799/how-to-store-an-object-in-a-cookie)。 – Sam
爲什麼我有負面投票? – user3458227