wayko Posted December 23, 2002 Posted December 23, 2002 i would like to know how how to pass the selected value from a drop list on the first page to the second page as the value for a parameter ie page one Private Sub cmdAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAdd.Click Response.Redirect("addMag.aspx?vol=" & ddVolume.SelectedItem.Value.ToString & "-Issue=" & ddIssue.SelectedItem.Value.ToString) End Sub page two daAddArticle.SelectCommand.Parameters("@issueId").Value = ddIssue.SelectedItem.Value when i sue it on the respose.redirect the value shows on the address bar how can i place that value on the select command Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.