问题描述
之前运行还都可以正常显示,再次运行LABEL里的内容可以显示,但GridView中的内容无法显示,是浏览器配置问题么?之前从来没有遇到过这种情况,怎么办?
解决方案
解决方案二:
帖代码吧,你这样子说个问题描述,大家很难帮你找到解决方法的
解决方案三:
引用1楼yangmingxing980的回复:
帖代码吧,你这样子说个问题描述,大家很难帮你找到解决方法的
是滴!!
解决方案四:
解决方案五:
前台:<asp:GridViewID="GridView1"runat="server"CellPadding="4"ForeColor="#333333"GridLines="Horizontal"ShowHeader="False"style="font-size:large"Width="876px"><AlternatingRowStyleBackColor="White"ForeColor="#284775"/><Columns><asp:HyperLinkFieldDataNavigateUrlFields="0"DataNavigateUrlFormatString="ToolDetails_xi.aspx?0={0}"DataTextField="0"DataTextFormatString="查看刀具信息"HeaderText="刀具明细"Text="详细数据"/></Columns><EditRowStyleBackColor="#999999"/><FooterStyleBackColor="#5D7B9D"Font-Bold="True"ForeColor="White"/><HeaderStyleBackColor="#5D7B9D"Font-Bold="True"ForeColor="White"/><PagerStyleBackColor="#284775"ForeColor="White"HorizontalAlign="Center"/><RowStyleBackColor="#F7F6F3"ForeColor="#333333"/><SelectedRowStyleBackColor="#E2DED6"Font-Bold="True"ForeColor="#333333"/><SortedAscendingCellStyleBackColor="#E9E7E2"/><SortedAscendingHeaderStyleBackColor="#506C8C"/><SortedDescendingCellStyleBackColor="#FFFDF8"/><SortedDescendingHeaderStyleBackColor="#6F8DAE"/></asp:GridView></td></tr><tr><tdclass="style7">
后台:this.GridView1.DataSource=ConvertToDataTable(zuiyou);GridView1.DataBind();privateDataTableConvertToDataTable(string[,]arr){DataTabledataSouce=newDataTable();for(inti=0;i<arr.GetLength(1);i++){DataColumnnewColumn=newDataColumn(i.ToString(),arr[0,0].GetType());dataSouce.Columns.Add(newColumn);}for(inti=0;i<arr.GetLength(0);i++){DataRownewRow=dataSouce.NewRow();for(intj=0;j<arr.GetLength(1);j++){newRow[j.ToString()]=arr[i,j];}dataSouce.Rows.Add(newRow);}returndataSouce;}
我觉得程序没问题,因为之前都有表格结果出来,就是某次运行没有结果之后,其他页面运行后的表格也显示不出来
解决方案六:
引用2楼cxzzwb的回复:
Quote: 引用1楼yangmingxing980的回复:
帖代码吧,你这样子说个问题描述,大家很难帮你找到解决方法的是滴!!
代码已贴,求帮助