Click here to Skip to main content
15,921,905 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Displaying Radio buttons dynamically Pin
Sandeep Akhare23-Apr-08 19:35
Sandeep Akhare23-Apr-08 19:35 
GeneralPassing an array in the Session Pin
Ekjon23-Apr-08 12:21
Ekjon23-Apr-08 12:21 
GeneralRe: Passing an array in the Session Pin
Christian Graus23-Apr-08 12:25
protectorChristian Graus23-Apr-08 12:25 
GeneralRe: Passing an array in the Session Pin
Ekjon23-Apr-08 13:09
Ekjon23-Apr-08 13:09 
GeneralRe: Passing an array in the Session Pin
Christian Graus23-Apr-08 16:29
protectorChristian Graus23-Apr-08 16:29 
GeneralRe: Passing an array in the Session Pin
Ekjon24-Apr-08 6:52
Ekjon24-Apr-08 6:52 
Generalregarding tab Pin
vjvjvjvj23-Apr-08 7:14
vjvjvjvj23-Apr-08 7:14 
QuestionClick on button in gridview and pass the unique ID in that row to the next page.... Pin
ahlaj7723-Apr-08 5:56
ahlaj7723-Apr-08 5:56 
Hello there!

On my first page (called Home.aspx) I have a gridview that has a column that uses button for the user to click on and be directed to page 2 (called BookReviews.aspx). I do have it set up & working where the user clicks on a button in the gridview on Home.aspx and through a session variable it passes the bookID to display in a label on BookReviews.aspx. However, the problem is I would like ONLY the bookReviews for that given bookID to be displayed in a gridview on BookReviews.aspx. I am not sure how I should go about doing this. Thanks for your help in advance! Smile | :)

**Book Table**
bookID
bookName

**Book Reviews**
bookID
bookReviewID
bookReviewDescription
bookReviewUserName

.......and this is what I have on my second page so far....
protected void Page_Load(object sender, EventArgs e)
{

if (!Page.IsPostBack)
}
labBookId.Text = Session["bookID"].ToString();
labBookReviewDesc.Text = Sessoin["bookReviewDescription"].ToString();
{

}

modified on Wednesday, April 23, 2008 4:38 PM

GeneralRe: Click on button in gridview and pass the unique ID in that row to the next page.... Pin
ahlaj7723-Apr-08 10:39
ahlaj7723-Apr-08 10:39 
AnswerRe: Click on button in gridview and pass the unique ID in that row to the next page.... Pin
boy.pockets23-Apr-08 15:29
boy.pockets23-Apr-08 15:29 
GeneralRe: Click on button in gridview and pass the unique ID in that row to the next page.... Pin
random423-Apr-08 20:05
random423-Apr-08 20:05 
GeneralRe: Click on button in gridview and pass the unique ID in that row to the next page.... Pin
ahlaj7724-Apr-08 2:18
ahlaj7724-Apr-08 2:18 
GeneralASP.Net 2.0 Gridview Sorting Pin
bld23-Apr-08 5:39
bld23-Apr-08 5:39 
GeneralRe: ASP.Net 2.0 Gridview Sorting Pin
random423-Apr-08 20:08
random423-Apr-08 20:08 
GeneralRe: ASP.Net 2.0 Gridview Sorting Pin
bld24-Apr-08 3:20
bld24-Apr-08 3:20 
GeneralProblem in using javascript in Web User Control Pin
Venkatesh Mookkan23-Apr-08 4:15
Venkatesh Mookkan23-Apr-08 4:15 
NewsRe: Problem in using javascript in Web User Control Pin
Venkatesh Mookkan23-Apr-08 17:44
Venkatesh Mookkan23-Apr-08 17:44 
QuestionHow to show progress bar while processing Pin
hemant.kaushal23-Apr-08 3:40
hemant.kaushal23-Apr-08 3:40 
AnswerRe: How to show progress bar while processing Pin
eyeseetee23-Apr-08 4:26
eyeseetee23-Apr-08 4:26 
General_dopostback() issue Pin
salmonraju23-Apr-08 3:39
salmonraju23-Apr-08 3:39 
GeneralRe: _dopostback() issue Pin
Venkatesh Mookkan23-Apr-08 4:18
Venkatesh Mookkan23-Apr-08 4:18 
GeneralRe: _dopostback() issue Pin
salmonraju23-Apr-08 4:27
salmonraju23-Apr-08 4:27 
GeneralRe: _dopostback() issue Pin
Venkatesh Mookkan23-Apr-08 4:29
Venkatesh Mookkan23-Apr-08 4:29 
GeneralRe: _dopostback() issue Pin
salmonraju23-Apr-08 4:35
salmonraju23-Apr-08 4:35 
GeneralAdding rows to gridview Pin
Brendan Vogt23-Apr-08 3:05
Brendan Vogt23-Apr-08 3:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.