ASP.NET:在Gridview中摆脱“”

时间:2018-05-31 14:12:45

标签: c# asp.net gridview aspxgridview

因此,我正在获得格式错误(并且理所当然),因为这个值。我认为它是某种unicode空间替代品或其他东西。

这是我称之为值的方式:

int updatecount = Convert.ToInt32(row.Cells[2].Text);

这是调试时的值: enter image description here

我需要将值设为数字或null。有没有人有类似的问题?

更新 这就是我赋值的方式:

之前的代码 enter image description here

<asp:BoundField ReadOnly="true" DataField="BASKET_ID" DataFormatString="" />
<asp:TemplateField HeaderText="Vertrags-Beginn">
    <ItemTemplate>
        <asp:TextBox runat="server" ID="STARTINGDATE"  Text='<%# ((DateTime)(Eval("CONTRACT_POS_START"))).ToShortDateString() %>'>
        </asp:TextBox><ajaxToolkit:CalendarExtender runat="server" Format="dd.MM.yyyy" ID="startingdatecalendar" TargetControlID="STARTINGDATE" />
    </ItemTemplate>
</asp:TemplateField>
<asp:BoundField HeaderText="Anzahl Tage" DataField="DAYCOUNT"  />

代码背后

Basket_Grid.DataSource = cdbe.VwBaskets.ToList();
Basket_Grid.DataBind();

2 个答案:

答案 0 :(得分:0)

尝试HtmlDecode

  

它将转换为HTML编码的html字符串   传输到解码字符串。

int updatecount = Convert.ToInt32(Server.HtmlDecode(row.Cells[2].Text));

或者

 int updatecount = Convert.ToInt32(row.Cells[2].Replace("&nbsp;", ""));

答案 1 :(得分:0)

尝试这样的事情

int updatecount = ( IsNumeric(String.row.Cells[2].Text) ? Convert.ToInt32(String.row.Cells[2].Text) : 0 );