首页上一页 1 下一页尾页 3 条记录 1/1页
求解:输入字符串的格式不正确。
发表在ASP.NET图书答疑
2010-11-30
是否精华
是
否
版块置顶:
是
否
你好,我在学习《ASP.net从入门到精通》(2008年12月第2版次)这本书的时候,在调试P193技巧2的时候,按照源码输入后出现“输入字符串的格式不正确。”提示,怎么改?
源码为:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//这是设置GridView控件数据显示格式
if (e.Row.RowType == DataControlRowType.DataRow)
{
[font color=#FF0000]e.Row.Cells[2].Text = String.Format("{0:C2}", Convert.ToDouble(e.Row.Cells[2].Text));[/font]
}
}
源码为:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//这是设置GridView控件数据显示格式
if (e.Row.RowType == DataControlRowType.DataRow)
{
[font color=#FF0000]e.Row.Cells[2].Text = String.Format("{0:C2}", Convert.ToDouble(e.Row.Cells[2].Text));[/font]
}
}