本文介绍了传递查询字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在asp.net C#2010

How Can I sent veritable One Page to another page in asp.net C# 2010

推荐答案


if(Request["xyz"] != null)
{
     string myString = Convert.ToString(Request["xyz"]); //If the datatype of the value is a string.
}



这篇关于传递查询字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 10:24