Click here to Skip to main content
15,902,836 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Looking for XML Web services Pin
Exelioindia2-Oct-06 22:56
Exelioindia2-Oct-06 22:56 
QuestionA basic Problem with buttons Pin
Britney S. Morales2-Oct-06 4:59
Britney S. Morales2-Oct-06 4:59 
AnswerRe: A basic Problem with buttons Pin
sanju02762-Oct-06 7:29
sanju02762-Oct-06 7:29 
AnswerRe: A basic Problem with buttons Pin
minhpc_bk2-Oct-06 16:05
minhpc_bk2-Oct-06 16:05 
QuestionHow to access gridview editing row element value in a class function? Pin
JimFeng2-Oct-06 4:55
JimFeng2-Oct-06 4:55 
AnswerRe: How to access gridview editing row element value in a class function? Pin
minhpc_bk2-Oct-06 16:10
minhpc_bk2-Oct-06 16:10 
GeneralRe: How to access gridview editing row element value in a class function? Pin
JimFeng3-Oct-06 4:03
JimFeng3-Oct-06 4:03 
GeneralRe: How to access gridview editing row element value in a class function? Pin
minhpc_bk3-Oct-06 11:52
minhpc_bk3-Oct-06 11:52 
Below is the sample code for getting the edit row, and once you have the reference you can easily access the edit values from the cells of the row:

public GridViewRow GetEditRow()
    {
        Page page = HttpContext.Current.Handler as Page;

        GridView gridView = page.FindControl("GridView1") as GridView;

        GridViewRow editRow = gridView.Rows[gridView.EditIndex];

        return editRow; 
    }

GeneralRe: How to access gridview editing row element value in a class function? Pin
JimFeng4-Oct-06 3:16
JimFeng4-Oct-06 3:16 
GeneralRe: How to access gridview editing row element value in a class function? Pin
minhpc_bk4-Oct-06 14:47
minhpc_bk4-Oct-06 14:47 
QuestionWhy it doesn't show detail error ... Pin
devboycpp2-Oct-06 4:12
devboycpp2-Oct-06 4:12 
AnswerRe: Why it doesn't show detail error ... Pin
morteza572-Oct-06 12:09
morteza572-Oct-06 12:09 
QuestionDropDownList in property window help please Pin
StonePit2-Oct-06 3:59
StonePit2-Oct-06 3:59 
AnswerRe: DropDownList in property window help please Pin
StonePit2-Oct-06 4:31
StonePit2-Oct-06 4:31 
QuestionAccessing WebPartZone child controls from JavaScript Pin
Faizal Rub2-Oct-06 2:17
Faizal Rub2-Oct-06 2:17 
QuestionDetailsView in asp.net Pin
S Ravindra M2-Oct-06 1:59
S Ravindra M2-Oct-06 1:59 
AnswerRe: DetailsView in asp.net Pin
Sathesh Sakthivel2-Oct-06 18:43
Sathesh Sakthivel2-Oct-06 18:43 
Questionplease help. it is urgent. Pin
lavanya_satheesh2-Oct-06 1:57
lavanya_satheesh2-Oct-06 1:57 
AnswerRe: please help. it is urgent. Pin
Colin Angus Mackay2-Oct-06 5:21
Colin Angus Mackay2-Oct-06 5:21 
AnswerRe: please help. it is urgent. Pin
GaryWoodfine 2-Oct-06 11:31
professionalGaryWoodfine 2-Oct-06 11:31 
AnswerRe: please help. it is urgent. Pin
saravanan054-Oct-06 12:02
saravanan054-Oct-06 12:02 
QuestionBring window to front Pin
munklefish2-Oct-06 1:43
munklefish2-Oct-06 1:43 
AnswerRe: Bring window to front Pin
Arjune7-Oct-06 5:42
Arjune7-Oct-06 5:42 
QuestionTreeView Control Using Javascript ? Pin
Kamal.Afridi2-Oct-06 1:05
Kamal.Afridi2-Oct-06 1:05 
Questionneed help wit creating dynamic links Pin
neodeaths1-Oct-06 23:25
neodeaths1-Oct-06 23:25 

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.