Quote:
Originally Posted by Imar
You could call that method when there's some value (like the ID of the new review) in the query string (which you'll need to pass to Reviews.aspx from AddEditReview.aspx).
|
The problem is that I don't know how to pass the Title of the inserted / updated review to Reviews.aspx in the EndEditing() method (page 489).
I tried many solutions. For instance:
Code:
private void EndEditing()
{
Response.Redirect("Reviews.aspx?Title=" + "<%# Bind('Title') %>");
}
and
Code:
private void EndEditing()
{
Response.Redirect( String.Format("Reviews.aspx?Title={0};", Eval("Title") ));
}
How can I retrieve the title of the inserted / updated review from the code behind file ?
Thank you