want to pass session of account id through href.. i tried with
`href="../Profile/Home.aspx?uid=<% =&Session("AccountId")%>"`
但它不起作用..帮助我
答案 0 :(得分:2)
尝试:
href="../Profile/Home.aspx?uid=<%= Session["AccountId"] %>"
你有一个无关紧要的&amp;在那里。 Session也用[]索引,而不是()