How do I persist the value of a label through a response.redirect?
问题 Here's the situation: I have a label's text set, immediately followed by a response.redirect() call as follows (this is just an example, but I believe it describes my situation accurately): aspx: <asp:Label runat="server" Text="default text" /> Code-behind (code called on an onclick event): Label.Text = "foo"; Response.Redirect("Default.aspx"); When the page renders, the label says "default text". What do I need to do differently? My understanding was that such changes would be done