我正在尝试开发一个简单的“发票”Windows应用程序。我已将文本框(项目,描述,MRP,数量等)限制为<%= @nextShiftTime=format_datetime(@user.admin_areas.next_shift_time_from_now) %>
,但用户在“描述”文本框(多行)中输入的数据必须显示在DataGridView
中这在我的代码中没有发生。
我的代码:
GridView
答案 0 :(得分:0)
尝试使用此示例在网格视图中包装文本。
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[1].Attributes.Add("style", "word-break:break-all;word-wrap:break-word;width:100px");
}
}
}