我想在.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">
任何提升都非常感激。