如何将字符串数据从文本框发送到任何页面中的另一个文本框?

时间:2014-12-08 10:02:30

标签: c# html asp.net sql-server

index page

 Text_box_1   |_"string data"_|  [submit button] 

when submitted

Another page

 Text_box_2  |_"Show string data from text_box_1"_| 


有必要使用数据库吗?

2 个答案:

答案 0 :(得分:0)

您可以使用Session变量将一页文字详细信息转移到另一页

索引页

Session["txtvalue"]=txtIndex.Text.Trim();

在其他页面中,将此Session变量作为

访问
if(Session["txtvalue"].ToString()!="")
{
  txtOther.Text=Session["txtvalue"].ToString();
}

答案 1 :(得分:0)

您还可以使用查询字符串在asp.net网页之间传输数据。 访问http://msdn.microsoft.com/en-us/library/6c3yckfw(v=vs.100).aspx