如何在href中传递会话变量

时间:2011-05-05 11:57:19

标签: c#

want to pass session of account id through href.. i tried with 
`href="../Profile/Home.aspx?uid=<% =&Session("AccountId")%>"` 
  

但它不起作用..帮助我

1 个答案:

答案 0 :(得分:2)

尝试:

href="../Profile/Home.aspx?uid=<%= Session["AccountId"] %>"

你有一个无关紧要的&amp;在那里。 Session也用[]索引,而不是()