Nu har jag letat och försökt men "utan" resultat. Ok, löste det. Råkade ha edit fältet före texterna.Datagrid update...
Jag ska editera i ett datagrid. Jag har kommit så långt att jag egentligen bara ska uppdatera datasettet.
Jag vill hämta värdet från den textbox som kommer fram när jag klickat på edit.
Enl vad jag har läst mig till så ska jag kunna göra det med:
TextBox answer = (TextBox)e.Item.Cells[0].Controls[0];
Men då får jag felmeddelandet:
Specified cast is not valid.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidCastException: Specified cast is not valid.
Source Error:
Line 189: loadDG();
Line 190: TextBox answer = (TextBox)e.Item.Cells[0].Controls[0];
Line 191: lbl_test.Text = answer.Text;//e.Item.FindControl("Answer").ToString();//.Cells[0].Text;//.Controls[1].ToString();//Sv: Datagrid update...
Det var fel.
Nu har jag lagt det sist och då funkar det.