Click here to Skip to main content
15,914,221 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Date control in Dropdownlist Pin
Sneha Bisht11-Oct-10 23:00
Sneha Bisht11-Oct-10 23:00 
GeneralRe: Date control in Dropdownlist Pin
Ravi Sant3-May-11 0:21
Ravi Sant3-May-11 0:21 
QuestionEditable GridView Pin
treuveni10-Oct-10 4:23
treuveni10-Oct-10 4:23 
AnswerRe: Editable GridView Pin
Not Active10-Oct-10 4:40
mentorNot Active10-Oct-10 4:40 
GeneralRe: Editable GridView Pin
treuveni11-Oct-10 0:05
treuveni11-Oct-10 0:05 
GeneralRe: Editable GridView Pin
Not Active11-Oct-10 2:11
mentorNot Active11-Oct-10 2:11 
GeneralRe: Editable GridView Pin
treuveni11-Oct-10 7:24
treuveni11-Oct-10 7:24 
AnswerRe: Editable GridView Pin
Steve Echols13-Oct-10 7:14
Steve Echols13-Oct-10 7:14 
You might try doing this in RowDataBound event:

if (e.Row.RowType == DataControlRowType.DataRow)
{
    if (GridViewIpTab.EditIndex == e.Row.RowIndex)
    {
        TextBox txtStart = (TextBox)GridViewIpTab.Rows[e.Row.RowIndex].FindControl("txtStart");     
        // Do what you need to do    
    }
}


In RowEditing do:

GridViewIpTab.EditIndex = e.NewEditIndex;
BindYourGrid();


- S
50 cups of coffee and you know it's on!
Code, follow, or get out of the way.

AnswerRe: Editable GridView Pin
MasttsaM18-Oct-10 0:48
MasttsaM18-Oct-10 0:48 
QuestionAjax app with tabs Pin
Haim Nachum9-Oct-10 9:34
Haim Nachum9-Oct-10 9:34 
AnswerRe: Ajax app with tabs Pin
Not Active9-Oct-10 19:37
mentorNot Active9-Oct-10 19:37 
QuestionResponse.Redirect(url, bool) Pin
Tamimi - Code9-Oct-10 6:11
Tamimi - Code9-Oct-10 6:11 
AnswerRe: Response.Redirect(url, bool) PinPopular
Brij9-Oct-10 7:53
mentorBrij9-Oct-10 7:53 
Generalthank you Pin
Tamimi - Code9-Oct-10 22:36
Tamimi - Code9-Oct-10 22:36 
QuestionDownload without showing the real link Pin
Jassim Rahma9-Oct-10 5:15
Jassim Rahma9-Oct-10 5:15 
AnswerRe: Download without showing the real link Pin
Brij9-Oct-10 5:46
mentorBrij9-Oct-10 5:46 
AnswerRe: Download without showing the real link [modified] Pin
Karthik. A9-Oct-10 12:27
Karthik. A9-Oct-10 12:27 
Questionview external websites in a panel Pin
Jassim Rahma9-Oct-10 4:53
Jassim Rahma9-Oct-10 4:53 
AnswerRe: view external websites in a panel Pin
Abdulhafeezo9-Oct-10 7:45
Abdulhafeezo9-Oct-10 7:45 
AnswerRe: view external websites in a panel Pin
Anurag Gandhi9-Oct-10 19:59
professionalAnurag Gandhi9-Oct-10 19:59 
AnswerRe: view external websites in a panel Pin
Ravi Sant3-May-11 0:22
Ravi Sant3-May-11 0:22 
Questionajax Pin
Thanusree Duth8-Oct-10 23:21
Thanusree Duth8-Oct-10 23:21 
AnswerRe: ajax Pin
Ankur\m/9-Oct-10 0:47
professionalAnkur\m/9-Oct-10 0:47 
AnswerRe: ajax Pin
Abhijit Jana9-Oct-10 1:01
professionalAbhijit Jana9-Oct-10 1:01 
Questionhow to get data from xml? Pin
srisairam7-Oct-10 23:46
srisairam7-Oct-10 23:46 

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.