如何在.aspx页面中访问会话值?

时间:2013-12-04 09:54:07

标签: asp.net

我想在.aspx页面中访问我的会话值,我尝试了很多方法,但它仍然没有显示价值。

if (DropDownList2.SelectedItem.Text == "Arabic")
        Session["dir"] = "rtl";
    else
        Session["dir"] = "ltr";

我喜欢这样,但无法访问会话值:

<html xmlns="http://www.w3.org/1999/xhtml" dir='<%# Session["dir"].ToString() %>'  runat="server">

任何提升都非常感激。

1 个答案:

答案 0 :(得分:1)

通过javascript访问它并将其设置在您想要的位置

See Here