how to pass more than one value in query string??
please reply
Response.Redirect("wardno180.aspx?ab=" + TextBox3.Text);
i want to pass the value of one more text box in this query string
what changes should i make??
This way
Response.Redirect("wardno180.aspx?ab=" + TextBox3.Text + "&bc=" + TextBox4.Text);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.