asp.net导出EXCEL问题! - .NET技术 / ASP.NET
C# code:
SqlConnection conn = CsDB.sqlcon();
SqlDataAdapter da = new SqlDataAdapter("select fwCoding from bjmuma_fwCoding where OrderNumber='" + Order + "'", conn);
DataSet ds = new DataSet();
da.Fill(ds, "table1");
DataTable dt = ds.Tables["table1"];
StringWriter sw = new StringWriter();
sw.WriteLine("test", "vnd.ms-excel.numberformat:@");
foreach (DataRow dr in dt.Rows)
{
sw.WriteLine(dr["fwCoding"]);
}
//string execlname = CsDB.GetSear(Coding);
sw.Close();
// foreach (DataGridItem dg in this.DataGrid1.Items) { dg.Cells[列].Attributes.Add("style", "vnd.ms-excel.numberformat: @;"); } this.DataGrid1.RenderControl(hw);
//DateTime.Now.ToString("yyyyMMdd_hhmm")
Response.AddHeader("Content-Disposition", "attachment; filename=" + CsDB.GetSear(Order) + ".csv");
Response.ContentType = "application/ms-excel";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
Respons
相关问答:
owc11满足不了要求,有没有更好点的,asp能调用的
目前没发现,帮你顶!
应该没有了吧
自已写。顶
帮顶,关注!
好像就这个了,目前还没看到其他得上市使用。。。帮顶!
自己再顶一下
好像是没有 ......
function CheckOpwd(){//验证用户名
var pwd=document.all.txtOpwd;
var div1=document.getElementById("divPwd");
if (pwd.value=="")
{
......
asp虚拟主机实现伪静态的方法:
1、 重写url参数
Step1: 建立前台文件index.asp,修改url参数形式。由于读取数据库中的记录不是专题的重点,故直接给出:
<!--#include file="config.asp" -->
&l ......
protected void btnLogin_Click(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("Server = (local);user id = sa;pwd = 1;database = Login");
&nb ......