0

我将数据库中的数据放入我的数据集中在此处输入图像描述,然后绑定到我的转发器控件,但它一直显示为“Prince Antony G”。它消除了空间。
而且我将这些数据导出到excel中,在excel中也删除了空格。
我需要数据库中的任何显示数据。任何想法来解决这个问题。

在堆栈溢出问题框中还删除了两个单词之间的更多空格

我的 Excel 编码:

    DataTable dt = new DataTable("Report");
    DataRow dr;
    dt.Columns.Add("Name");   

    for (int i = 0; i < dt_Status.Rows.Count; i++)
    {
        dr = dt.NewRow();

        dr["Name"] ="<pre>"+ dt_Status.Rows[i]["NAME"].ToString() +"</pre>";
        dt.Rows.Add(dr);
    }

    HttpResponse response = HttpContext.Current.Response;

    // first let's clean up the response.object
    response.Clear();
    response.Charset = "";

    // set the response mime type for excel
    response.ContentType = "application/vnd.ms-excel";
    response.AddHeader("Content-Disposition", "attachment;filename=Report.xls");

    // create a string writer
    using (StringWriter sw = new StringWriter())
    {
        using (HtmlTextWriter htw = new HtmlTextWriter(sw))
        {
            // instantiate a datagrid
            DataGrid dg = new DataGrid();
            dg.DataSource = dt;
            dg.DataBind();
            dg.RenderControl(htw);
            response.Write(sw.ToString());
            response.End();
        }
    }

更新我的代码后,我得到了 excel 输出:

在此处输入图像描述

我需要在单个单元格中显示。

4

2 回答 2

3

html 不能识别多个空格。

你把你的数据放在<pre></pre>标签之间,说它是按格式的。

或者您可以将空格替换为&nbsp;. 这是一个不间断的空格字符

空格用于格式化你的 html 代码,因此如果你有多个空格,它会被包装成一个。

于 2012-09-12T07:28:48.693 回答
0

一个简单方便的东西:

string value = String.Join(" ", "Prince Antony G".Split(new char[] {' '}, 
StringSplitOptions.RemoveEmptyEntries));
于 2012-09-12T07:41:02.717 回答