毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> net技术 >> 正文

Repeater导出Excel怎么把最后一列去掉

更新时间:2012-8-23:  来源:毕业论文

RT,在导出来的Excel中,编辑、删除那一列也导出来了,我要在导出时删掉最后一列代码怎么写啊?

C# code StringWriter sw = new StringWriter();
        HtmlTextWriter hw = new HtmlTextWriter(sw);
        //rep.RenderControl(hw);
        this.repeater1.RenderControl(hw);
        Response.Clear();
        Response.ContentType = "application/vnd.ms-excel";
        Response.Charset = "";
        repeater1.Page.EnableViewState = false;
        Response.AppendHeader("Content-Disposition", "attachment;filename=\"" + HttpUtility.UrlEncode("用户信息(" + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ").xls", System.Text.Encoding.UTF8) + "\"");
        string html = "<html><head><meta http-equiv=Content-Type content=\"text/html;";
        html += "charset=UTF8\"><title> adsf</title></head><body><table><tr></tr>";
       // html += "<td>用户名</td><td>密码</td><td>所属机构</td><td>用户类型</td></tr>";
        Response.Write(html);
        Response.Write(sw.ToString());
        Response.Write("</table></body></html>");
        Response.End();
repeater1绑定事件里处理吧,或者隐藏一个repeater2进行绑定 

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。