何使用session和querystring将值从一个页面传递到

何使用session和querystring将值从一个页面传递到

本文介绍了如何使用session和querystring将值从一个页面传递到另一个页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请告诉我有人如何在gridview链接按钮上发送多个值点击,点击此链接比使用QueryString打开新页面。现在我们想更改QueryString,我不想使用Session,有没有其他方法可以用c#来解决这个问题.asp.net。 gridview linkbutton的吹码。



我的尝试:



Please tell me someone how i can send multiple value on gridview link button click, on click on this link than open new page using QueryString. now we would like to change QueryString and i don't want to use Session, is there any other way to resolve this issue.asp.net with c#. blow code of gridview linkbutton.

What I have tried:

<a href='ActWiseCLG.aspx?DistrictIdCLG=<%# Eval("DistCode")%>&District=<%# Eval("District")%>&dCLG=true'><%# Eval("NoOfCLG")%></a>

推荐答案




这篇关于如何使用session和querystring将值从一个页面传递到另一个页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 21:59