本文介绍了会话值以QueryString的形式传入菜单控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将会话值作为QueryString传递给菜单控件

例如:Admin.aspx?ax =<%= Name%>这句话有什么错误吗?使用此语句,Session ["Name"]值不会作为QueryString在菜单控件中传递.
如果有人知道,请回复.

How can a Session Value to pass in Menu Control as QueryString

For eg : Admin.aspx?ax=<%=Name%> Is there any mistake in this statement. With this statement Session["Name"] value is not passed as QueryString in the menu control.
If anybody knows,do reply.

推荐答案

Response.redirect("Admin.aspx?ax=" + Session["Name"].tostring());


这篇关于会话值以QueryString的形式传入菜单控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 19:16