如何在href中传递会话变量

本文关键字:会话 变量 href | 更新日期: 2023-09-27 17:55:06

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

但它不起作用…帮我

如何在href中传递会话变量

try:

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

你有一个多余的&在那里。另外,Session的索引是[],而不是()