Re: sending two parameters over to another page



On Feb 6, 4:08 pm, siccolo <aleks...@xxxxxxxxxxx> wrote:
On Feb 6, 2:06 pm, JJ297 <nc...@xxxxxxxxx> wrote:

I want to send Titleid and [descriptions] over to the other page how
do I do this?  I know how to send one how do I add another?

 Response.Redirect("checkoutItem.aspx?TitleID=" &
GridView1.SelectedValue)

Thanks!

aaa....use "&" delimeter?
Response.Redirect ("kuku.aspx?TitleID=999&SecondValue=666")

Tried this but it's still not working.

Response.Redirect("checkoutitem.aspx?Titleid= " & "classificationid= "
& GridView1.SelectedValue)
.