2012-10-05 36 views
-1

我有基於ASP.NET的網站。比如我有兩個錨點:寫入會話的錨點單擊ASP.NET

<a id="sortByPopular" runat="server" href="url1">Popular</a> 
<a id="sortByRecent" runat="server" href="url2">Recent</a> 

在後面的代碼我可以建立的href屬性:

sortByPopular.Href = BuildURL(POPULAR); 
sortByRecent.Href = BuildURL(RECENT); 

我要記住,排序順序用戶使用的是房源頁面上。我想應該有辦法在用戶點擊鏈接時創建新的Session變量。有人可以幫助我嗎?

在此先感謝。

回答

3

可以使用的LinkBut​​ton

<asp:LinkButton runat="server" ID="sortByRecent" Text="Recent" OnClick="sortByRecent_Click"></asp:LinkButton> 

代碼隱藏

protected void sortByRecent_Click(object sender, EventArgs e) 
{ 
    //do your session thing here 
}