Code:
Response.Redirect("webform2.aspx?a=" + textbox1.Text + "&b=" + textbox2.text + "&c=" + textbox3.text);
here a, b, c hold the values... and can be accessed like...
Request.QueryString("a"), Request.QueryString("b"), Request.QueryString("c")... respectively