Hi, For ex, in Source's (Source.aspx) CodeBehind (C#), string val_a="abc"; string val_b="def"; LinkButton.PostBackURL="Target.aspx?a=" + val_a + "&b=" + val_b; You can get the values in Target page(Target.aspx.cs) using, string a = Request.QueryString["a"].ToString(); string b= Request.QueryString["b"].ToString(); Also You may use PreviousPage property of ASP.NET 2.0 The following could be added to Target.aspx: <%@ PreviousPageType VirtualPath="~/Source.aspx" %> TextBox nameBox = PreviousPage.NameBox; Here,NameBox is the TextBox control in the Source Page. -- modified at 3:31 Monday 16th October, 2006
Regards, Jay :)