Click here to Skip to main content
15,927,694 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: OutputCache Duration Maximum Value Pin
Yona Low14-Jun-07 4:08
Yona Low14-Jun-07 4:08 
QuestionHow to select and hyperlink the contents of a row in a grid view dynamically Pin
kidus113-Jun-07 10:07
kidus113-Jun-07 10:07 
AnswerRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
Not Active13-Jun-07 11:32
mentorNot Active13-Jun-07 11:32 
GeneralRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
kidus113-Jun-07 12:09
kidus113-Jun-07 12:09 
GeneralRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
Not Active13-Jun-07 13:57
mentorNot Active13-Jun-07 13:57 
QuestionRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
kidus1213-Jun-07 15:28
kidus1213-Jun-07 15:28 
AnswerRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
Not Active13-Jun-07 16:50
mentorNot Active13-Jun-07 16:50 
GeneralRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
kidus114-Jun-07 2:34
kidus114-Jun-07 2:34 
hi

here is the code for creating the clickable Row using Javascript
if (e.Row.DataItemIndex == -1)
return;

e.Row.Attributes.Add("onMouseOver",
"this.style.cursor='hand';");
e.Row.Attributes["onmouseover"] =
"javascript:setMouseOverColor(this);";
e.Row.Attributes["onmouseout"] =
"javascript:setMouseOutColor(this);";
e.Row.Attributes.Add("onclick",
this.GetPostBackClientEvent(GrdDynamic,
"Select$" + e.Row.RowIndex.ToString()));

and what I want to do is to hyperlink to other page when the row in the clickable gridview is clicked and passed the contents of the clicked row to the other page(using session).

thanks


kidus
GeneralRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
Not Active14-Jun-07 2:55
mentorNot Active14-Jun-07 2:55 
GeneralRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
kidus114-Jun-07 3:39
kidus114-Jun-07 3:39 
GeneralRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
Not Active14-Jun-07 3:53
mentorNot Active14-Jun-07 3:53 
AnswerRe: How to select and hyperlink the contents of a row in a grid view dynamically Pin
chand1013-Jun-07 18:41
chand1013-Jun-07 18:41 
QuestionStumped GridView Loop Pin
bjjonesey13-Jun-07 10:04
bjjonesey13-Jun-07 10:04 
AnswerRe: Stumped GridView Loop Pin
Venkatesh Mookkan13-Jun-07 17:05
Venkatesh Mookkan13-Jun-07 17:05 
AnswerRe: Stumped GridView Loop Pin
bjjonesey14-Jun-07 4:43
bjjonesey14-Jun-07 4:43 
QuestionDatagrid - Counting the Number of Checkboxes that are Checked Within a Datagrid Pin
wood060113-Jun-07 9:16
wood060113-Jun-07 9:16 
AnswerRe: Datagrid - Counting the Number of Checkboxes that are Checked Within a Datagrid Pin
Sankar Komma 13-Jun-07 9:57
Sankar Komma 13-Jun-07 9:57 
GeneralRe: Datagrid - Counting the Number of Checkboxes that are Checked Within a Datagrid Pin
wood060113-Jun-07 10:04
wood060113-Jun-07 10:04 
GeneralRe: Datagrid - Counting the Number of Checkboxes that are Checked Within a Datagrid Pin
Sankar Komma 13-Jun-07 10:07
Sankar Komma 13-Jun-07 10:07 
GeneralRe: Datagrid - Counting the Number of Checkboxes that are Checked Within a Datagrid Pin
wood060113-Jun-07 12:00
wood060113-Jun-07 12:00 
Questionusing master page Pin
Tiger45613-Jun-07 6:17
Tiger45613-Jun-07 6:17 
AnswerRe: using master page Pin
ednrgc13-Jun-07 7:04
ednrgc13-Jun-07 7:04 
AnswerRe: using master page Pin
Not Active13-Jun-07 11:29
mentorNot Active13-Jun-07 11:29 
GeneralRe: using master page Pin
Tiger45613-Jun-07 20:22
Tiger45613-Jun-07 20:22 
GeneralRe: using master page Pin
Not Active14-Jun-07 2:00
mentorNot Active14-Jun-07 2:00 

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.