本文介绍了单击按钮时如何将一个以上的值传递给另一页.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我单击按钮时,如何将一个以上的值传递给另一页.
我看过非常文章,但所有人都说如何将一项传递给另一页
请帮助我.

how can I pass more than one values to another page when click the button.
I read very article but all of them say how pass one item two another page
please help me.

推荐答案



Response.Redirect( "NextPageName.aspx?query1=" + txtBox1.Text + "&query2=" + txtBox2.Text + "&query3=" + txtBox3.Text + " );
//you can attach as many queries in the query string



要从查询字符串中检索值:



To retrieve the values from the query string:

String query1 = ( Request.QueryString[ "query1" ] != null ) ? Request.QueryString[ "query1" ] : String.Empty;

String query2 = ( Request.QueryString[ "query2" ] != null ) ? Request.QueryString[ "query2" ] : String.Empty;

String query3 = ( Request.QueryString[ "query3" ] != null ) ? Request.QueryString[ "query3" ] : String.Empty;



快乐编码,
莫尔斯



Happy Coding,
Morgs


这篇关于单击按钮时如何将一个以上的值传递给另一页.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 09:48