ismailc,
Use bb code tag when post a source code. See # icon at top of post editor.
Correction to @pravinkumar's post,
in the second page assign the value in the session variable to textbox2 in Page_Load
textbox2.value=session["tb1"];
Check the availability of an object,
if(Session["tb1"]!=null) {
TextBox2.Text=Session["tb1"].ToString();
}
__avd
Posting Genius (adatapost)
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241