Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > .NET Framework > Forum > merge cell header แล้ว export to excel แล้ว ส่วนที่แทรกเข้ามาไปเข้าไปใน excel



 

merge cell header แล้ว export to excel แล้ว ส่วนที่แทรกเข้ามาไปเข้าไปใน excel

 



Topic : 080036



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์




คือผมทำการ merge cell header โดยการแทรกเข้าไปที่หัวตาราง แล้วพอทำการ export ในส่วนที่ mearge cell มันไม่ไปด้วย
ไม่ทราบต้องทำยังไง

แล้ว export to excel แล้ว ส่วนที่แทรกเข้ามาไปเข้าไปใน excel


Code (C#)
using System; 
using System.Data; 
using System.Configuration; 
using System.IO; 
using System.Web; 
using System.Web.Security; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Web.UI.WebControls.WebParts; 
using System.Web.UI.HtmlControls; 
 
 
public class GridViewExportUtil 
{ 
 
    public static void Export(string fileName, GridView gv) 
    { 
        HttpContext.Current.Response.Clear(); 
        HttpContext.Current.Response.AddHeader( 
            "content-disposition", string.Format("attachment; filename={0}", fileName)); 
        HttpContext.Current.Response.ContentType = "application/ms-excel"; 
 
        using (StringWriter sw = new StringWriter()) 
        { 
            using (HtmlTextWriter htw = new HtmlTextWriter(sw)) 
            { 
                //  Create a form to contain the grid 
                Table table = new Table(); 
 
                //  add the header row to the table 
                if (gv.HeaderRow != null) 
                { 
                    GridViewExportUtil.PrepareControlForExport(gv.HeaderRow); 
                    table.Rows.Add(gv.HeaderRow); 
                } 
 
                //  add each of the data rows to the table 
                foreach (GridViewRow row in gv.Rows) 
                { 
                    GridViewExportUtil.PrepareControlForExport(row); 
                    table.Rows.Add(row); 
                } 
 
                //  add the footer row to the table 
                if (gv.FooterRow != null) 
                { 
                    GridViewExportUtil.PrepareControlForExport(gv.FooterRow); 
                    table.Rows.Add(gv.FooterRow); 
                } 
 
                //  render the table into the htmlwriter 
                table.RenderControl(htw); 
 
                //  render the htmlwriter into the response 
                HttpContext.Current.Response.Write(sw.ToString()); 
                HttpContext.Current.Response.End(); 
            } 
        } 
    } 
 
    /// <summary> 
    /// Replace any of the contained controls with literals 
    /// </summary> 
    /// <param name="control"></param> 
    private static void PrepareControlForExport(Control control) 
    { 
        for (int i = 0; i < control.Controls.Count; i++) 
        { 
            Control current = control.Controls[i]; 
            if (current is LinkButton) 
            { 
                control.Controls.Remove(current); 
                control.Controls.AddAt(i, new LiteralControl((current as LinkButton).Text)); 
            } 
            else if (current is ImageButton) 
            { 
                control.Controls.Remove(current); 
                control.Controls.AddAt(i, new LiteralControl((current as ImageButton).AlternateText)); 
            } 
            else if (current is HyperLink) 
            { 
                control.Controls.Remove(current); 
                control.Controls.AddAt(i, new LiteralControl((current as HyperLink).Text)); 
            } 
            else if (current is DropDownList) 
            { 
                control.Controls.Remove(current); 
                control.Controls.AddAt(i, new LiteralControl((current as DropDownList).SelectedItem.Text)); 
            } 
            else if (current is CheckBox) 
            { 
                control.Controls.Remove(current); 
                control.Controls.AddAt(i, new LiteralControl((current as CheckBox).Checked ? "True" : "False")); 
            } 
 
            if (current.HasControls()) 
            { 
                GridViewExportUtil.PrepareControlForExport(current); 
            } 
        } 
    } 
} 




ข้างบนเป็น code การ export อยากทราบว่าถ้าต้องการ เพิ่มในส่วน header แทรกเข้าไปต้องทำในส่วนไหน และ add ยังไงด้วย ขอบคุณมากครับ



Tag : ASP.NET Ms SQL Server 2008, Web (ASP.NET), C#, VS 2010 (.NET 4.x)







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-06-21 14:31:39 By : billionairez View : 2302 Reply : 6
 

 

No. 1



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
 protected void EmployeeGrid_RowCreated(object sender, GridViewRowEventArgs e)
        {
          
            if (e.Row.RowType == DataControlRowType.Header)
            {
                //Creating a gridview object            
                 objGridView = (GridView)EmployeeGrid;

                //Creating a gridview row object
                GridViewRow objgridviewrow = new GridViewRow(1, 0, DataControlRowType.Header, DataControlRowState.Insert);

                //Creating a table cell object
                TableCell objtablecell = new TableCell();

                #region Merge cells

                //Add a blank cell at the first three cell headers
                //This can be achieved by making the colspan property of the table cell object as 3
                // and the text property of the table cell object will be blank
                //Henceforth, add the table cell object to the grid view row object
                AddMergedCells(objgridviewrow, objtablecell, 3, "Employee Detail", System.Drawing.Color.LightGreen.Name);

                //Merge columns d,e (i.e.Address, City, Region, Postal Code, Country) under the column name "Address Details"
                //This can be achieved by making the colspan property of the table cell object as 2
                //and setting it's text to "Address Details" 
                //Henceforth, add the table cell object to the grid view row object
                AddMergedCells(objgridviewrow, objtablecell, 2, "Address Details", System.Drawing.Color.LightSkyBlue.Name);

                AddMergedCells(objgridviewrow, objtablecell,4, "Address Specify", System.Drawing.Color.LightSkyBlue.Name);

                //Lastly add the gridrow object to the gridview object at the 0th position
                //Because,the header row position is 0.
                objGridView.Controls[0].Controls.AddAt(0, objgridviewrow);

                #endregion
            }
        }
        #endregion




Code (C#)
  protected void AddMergedCells(GridViewRow objgridviewrow,
            TableCell objtablecell, int colspan, string celltext, string backcolor)
        {
            objtablecell = new TableCell();
            objtablecell.Text = celltext;
            objtablecell.ColumnSpan = colspan;
            objtablecell.Style.Add("background-color", backcolor);
            objtablecell.HorizontalAlign = HorizontalAlign.Center;
            objgridviewrow.Cells.Add(objtablecell);
        }




code ข้างบนเป็นการแทรก header เข้าไปบน gridview แล้วพอ export to excel แล้วมันไม่แมปเข้าไปใน excel ให้ด้วยอะครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-21 16:16:57 By : billionairez
 


 

No. 2

Guest


โค้ดด้านบนมันเป็น htmlนะจ๊ะ

แค่เอาสามารถเอามาเปิดกับ excel ได้เท่านั้น ไม่ใช่ excel จริงๆ หรอก

ถ้าจะทำจริงๆ น่าจะใช้ excel interop มากกว่า

ลองดูนี่ http://www.codeproject.com/Articles/20228/Using-C-to-Create-an-Excel-Document
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-22 11:08:43 By : อิอิ
 

 

No. 3



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 2 เขียนโดย : อิอิ เมื่อวันที่ 2012-06-22 11:08:43
รายละเอียดของการตอบ ::
มันก็สามารถเปิดเป็นไฟล์ excel ได้ปริ๊นได้ก็พอแล้วนะครับ แต่ ผมอยากรู้ว่าคือตอนผม merge cell โดยการแทรกเข้าไปบน header แล้ว
ใน object gridview มัน ไม่ได้ แอดเข้าไปใน object แต่มันแค่ไปแทรกเฉยๆ อยากรู้ว่าจะจะแอดเข้าไปใน object ด้วยต้องทำอย่างไรหรือว่า
มีวิธีอื่นไหม

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-22 14:28:15 By : billionairez
 


 

No. 4

Guest


ทำไมนี้ไม่ได้หรอกจ้า

เพราะที่แทรกใหม่ลงไปมันไม่ได้ไปเพิ่มของส่วนของ gridview เลย

เพราะมันไปทำงานที่ส่วนที่ได้ output ออกไปแล้ว (อ้างอิงจาก EmployeeGrid_RowCreated)

ส่วน gridview จริงๆ นั้นมันไม่ได้ถูกแตะต้องอะไรเลย

ดังนั้นเวลาส่ง gridview ไปเขียน html ส่วนที่แทรกไปไหม่มันก็เลยไม่ได้ไปด้วยน่ะจ้ะ

แต่ถ้าต้องการจะเขียนแบบ html จริงๆ ก็คงต้อง manual เขียนส่วน header ของ gridview เองแล้วแหละจ้า
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-22 15:39:55 By : อิอิ
 


 

No. 5



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์


. ตอบความคิดเห็นที่ : 4 เขียนโดย : อิอิ เมื่อวันที่ 2012-06-22 15:39:55
รายละเอียดของการตอบ ::
ช่วยแนะด้วยจ้า

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-23 08:09:22 By : billionairez
 


 

No. 6

Guest


ก็แก้ method export แหละ

ปกติถ้าเป็น gv.HeaderRow ก็ส่งไป PrepareControlForExport เลยใช่เปล่า

แต่ที่นี้เราไม่ต้องการ header ของ gv แบบปกติ

เราก็ส่งไปโมใหม่ อาจส่งไปที่ method ใหม่ก็ได้ ให้มันเขียน header ถ้าที่เป็นต้องการ

จะให้แทรกให้ span ก็เขียนเอา จะทำแบบ hard cord เลยก็ได้ง่ายดี ไม่สับสน
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-06-25 09:44:43 By : อิอิ
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : merge cell header แล้ว export to excel แล้ว ส่วนที่แทรกเข้ามาไปเข้าไปใน excel
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่