2011-06-18 49 views

回答

2

試試這個:

void GridView_RowDataBound(Object sender, GridViewRowEventArgs e) 
{ 

    if(e.Row.RowType == DataControlRowType.DataRow) 
    { 
     // say temparature field in column 3 

     decimal temp = decimal.Parse(e.Row.Cells[2].Text.ToString()); 
} 

} 

情況下,它的錯誤出來說:「輸入字符串的不正確的格式」,然後看看這個文件

http://www.codeproject.com/KB/cs/Eduardo_Sierra.aspx

+0

非常感謝。我一直在得到這個錯誤,不知道我做錯了什麼。現在我知道這是一個原因,可以調查。 – user776676

相關問題