index page Text_box_1 |_"string data"_| [submit button] when submitted Another page Text_box_2 |_"Show string data from text_box_1"_|
有必要使用数据库吗?
答案 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