[Solved] I need to use multiple response.redirect in ASP.NET using C#


If I understand the problem correctly, you are trying to send three values from Page One to Page Two. In that case, you could build a Query string using the values from txtBoxBookTitle, drpDownType and DrpDownPurchase. The string should be in the follwing format:

string queryString = "?bookName={txtBoxBookTitle}&bookType={drpDownType.Value}&purchaseType={DrpDownPurchase.Value}"

Then you could append the above string to your

Response.Redirect("turtleDoxPurchase.aspx" + queryString);

Hope that helps!

1

solved I need to use multiple response.redirect in ASP.NET using C#