Response.Redirect which POSTs data to another URL in ASP.NET

后端 未结 4 1250
闹比i
闹比i 2020-12-01 06:07

I want to redirect a response to another URL while it contains some POST data in it\'s HTTP header.

// Inside an ASP.NET page code behind:
Response.Redirect(         


        
4条回答
  •  借酒劲吻你
    2020-12-01 06:37

    You can use viewstate to "transfer" the data and read it on a new page or even the same page.

提交回复
热议问题