Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On the previous page, the user is going to click a button from a gridview. Each button click will produce a different result on the next page. I want to display text that will put information from a database into the header text. For example, if the user clicks the button next to the "03/04/2012 - 03/11/2012", I want the header on the next page to say: "Please enter data for 03/04/2012 - 03/11/2012".

Is this possible? Is this even recommended or am I better off using an asp:label control?

share|improve this question

1 Answer

Yes, this is possible and perfectly acceptable.

Use an embedded code block (sometimes called gator tags) <%=...%> in your markup. The = operator is equivalent to calling Response.Write, so it just outputs the value of whatever you give it inline.

<h2>Please enter data for <%=DateRange%></h2>

In this example, DateRange would be a property on your next page. If you're getting this date range data from a database as you say, then you would need to store it when you click on the grid view button and then retrieve it on the next page.

There is nothing wrong with doing it like this, but storing it in a database seems like overkill just to get the value on the next page. You can use one of the following instead:

  • Querystring
  • Session variables
  • Server.Transfer

A quick google search turned up this page which shows examples of all of these methods.

Regardless of which method you use, gator tags can still be used to set the value of the H2 on the next page.

Also, if you are using Asp.Net 4, then you can use <%: %>. It's Like <%= %> But it HtmlEncodes the output automatically.

share|improve this answer
1  
+1. I think, Server.Transfer along with PreviousPage.FindControl("ControlID") should be fine enough? So In this way, No need to temporary preserve the data in Session, cookie, query string etc. Right ? – abcdefghi Mar 15 '12 at 19:36
@PankajGarg Yeah, Server.Transfer seems like a good option in this case. But if you wanted to persist the value through any subsequent pages then the other options are available. – Robbie Mar 15 '12 at 19:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.