採用cookie實現文章頂 踩

2022-02-09 02:48:38 字數 1642 閱讀 2429

最近在做乙個小專案,其中有個關於文章的頂/踩的實現,之前也沒做過類似的案例。在網上找了半天,沒有多大收穫,於是乎決定按照自己的想法去做乙個簡單的例子,沒想到成功了,呵呵,其實在下也不過是一菜鳥,拿出來與大家分享,其中不免會有漏洞,望大家見諒,也希望高手們多多指教。謝了

第一步,建立乙個aspx頁面--testmycookie.aspx,頁面**如下:

第二步,testmycookie.aspx--testmycookie.aspx.cs的後台**如下:

using system;

using system.collections;

using system.configuration;

using system.data;

using system.linq;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.htmlcontrols;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.xml.linq;

public partial class testmycookie : system.web.ui.page

}/// /// 刪除cookie

///

///

///

protected void button1_click(object sender, eventargs e)

}/// ///

///

public void load()

else

//文字框顯示資訊

//將ip位址轉成我們想要的字串格式

user_ip = user_ip.replace(".", "|");

//接收引數id,一定要加異常處理,因為首次載入的時候cd=null,這裡也可以改**

trycatch (exception)

//獲取或建立cookie(獲取和建立其實是一樣的,就跟會話一樣的)

//判斷獲取到的cookie

if (mycookie == null)//如果cookie還沒被建立

else

else

}this.textbox4.text = "當前的cookie值:" + mycookie.value.tostring();//文字框顯示當前cook的value資訊

# endregion}}

第三步,新建乙個專案,把以上**copy到專案中執行就能看到效果了

截圖1:第一次點選"傳遞的引數id的引數值為1"

截圖2:再次點選"傳遞的引數id的引數值為1"

滑動吸頂實現

在很多應用中,看到這樣的listview listview滑動過程中分組標題固定在上方,當第二個組滑上來時,第乙個組才跟著上滑,下乙個組固定,直到該組也滑出上邊緣。世上無難事只怕有心人,在github上就有人做出來了,而且效果很好 後來發現安卓自帶應用中聯絡人應用就是這樣的,估計github的作者也...

cookie實現登入

獲取cookie time.sleep 8 cookie self.driver.get cookies 使用 訪問前沒有cookie,未登入,新增cookie後,再次訪問,顯示登入狀態 cookies self.driver.get for cookie in cookies if expiry ...

js 採用prototype實現繼承

採用prototype的方式實現js繼承 呼叫a的建構函式時,沒有給他傳遞引數。這是prototype中標準做法,要確保建構函式沒有任何引數 function a a.prototype.acolor red a.prototype.ashowcolor function function b b....