Click here to Skip to main content
15,891,423 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: C# webform help Pin
Jordan McGehee14-Apr-10 10:31
Jordan McGehee14-Apr-10 10:31 
GeneralRe: C# webform help Pin
Not Active14-Apr-10 16:18
mentorNot Active14-Apr-10 16:18 
QuestionHow to access RDLC matrix subtotal value? Pin
JimFeng14-Apr-10 7:07
JimFeng14-Apr-10 7:07 
AnswerRe: How to access RDLC matrix subtotal value? Pin
Sandeep Mewara14-Apr-10 21:17
mveSandeep Mewara14-Apr-10 21:17 
GeneralRe: How to access RDLC matrix subtotal value? Pin
JimFeng15-Apr-10 3:06
JimFeng15-Apr-10 3:06 
Questiongridview Pin
tek 200914-Apr-10 5:52
tek 200914-Apr-10 5:52 
AnswerRe: gridview Pin
Not Active14-Apr-10 5:59
mentorNot Active14-Apr-10 5:59 
QuestionRe: gridview Pin
tek 200914-Apr-10 6:21
tek 200914-Apr-10 6:21 
the difficulty is in the redirect when I double click on a line, I failed to do that, here is my gridview code click :

protected void GridView1_RowDataBound1(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "this.style.cursor='hand';this.style.textDecoration='underline';this.style.background='#FFF5E6'";
e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';this.style.background='none'";
e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink(this, "Select$" + e.Row.RowIndex);
}
}
AnswerRe: gridview Pin
Not Active14-Apr-10 8:30
mentorNot Active14-Apr-10 8:30 
AnswerRe: gridview Pin
David Mujica14-Apr-10 6:09
David Mujica14-Apr-10 6:09 
QuestionCurrent theme Pin
paper6714-Apr-10 5:12
paper6714-Apr-10 5:12 
AnswerRe: Current theme Pin
michaelschmitt14-Apr-10 5:27
michaelschmitt14-Apr-10 5:27 
GeneralRe: Current theme Pin
paper6714-Apr-10 6:05
paper6714-Apr-10 6:05 
GeneralRe: Current theme Pin
michaelschmitt14-Apr-10 23:25
michaelschmitt14-Apr-10 23:25 
GeneralRe: Current theme Pin
paper6715-Apr-10 2:55
paper6715-Apr-10 2:55 
GeneralRe: Current theme Pin
michaelschmitt15-Apr-10 3:28
michaelschmitt15-Apr-10 3:28 
GeneralRe: Current theme Pin
paper6715-Apr-10 4:54
paper6715-Apr-10 4:54 
GeneralRe: Current theme Pin
michaelschmitt15-Apr-10 6:35
michaelschmitt15-Apr-10 6:35 
GeneralRe: Current theme Pin
paper6715-Apr-10 6:52
paper6715-Apr-10 6:52 
GeneralRe: Current theme Pin
michaelschmitt15-Apr-10 8:00
michaelschmitt15-Apr-10 8:00 
GeneralRe: Current theme Pin
paper6715-Apr-10 8:01
paper6715-Apr-10 8:01 
GeneralRe: Current theme Pin
michaelschmitt15-Apr-10 8:23
michaelschmitt15-Apr-10 8:23 
QuestionAdd HTML table row at run time by clicking a button Pin
_______________________14-Apr-10 4:26
_______________________14-Apr-10 4:26 
AnswerRe: Add HTML table row at run time by clicking a button Pin
Martin Jarvis14-Apr-10 10:58
Martin Jarvis14-Apr-10 10:58 
GeneralRe: Add HTML table row at run time by clicking a button Pin
_______________________14-Apr-10 16:45
_______________________14-Apr-10 16:45 

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.