Đăng nhập | Đăng ký

Danh sách thành viên | Cá nhân | Nhà đất, bất động sản

Diễn đàn    ASP.NET & Sharepoint MOSS, WSS 2007    tạo file excel bằng xsl transform

Thành viênNội dung
xml

XML .net
3  bài
02-06-2008 12:35:24
code nhé bà con.

----------------
XmlDocument doc = new XmlDocument();
doc.Load("datas.xml");
FileStream downloadFile = File.Create(Server.MapPath("excels.xls"));
// transform
XslTransform xsl = new XslTransform();
xsl.Load(Server.MapPath("temp.xsl"));
xsl.Transform(doc, null, downloadFile, null);
downloadFile.Flush();
downloadFile.Close();

Response.Redirect("excels.xls");
 
xml

XML .net
3  bài
02-06-2008 12:36:03
file xml nhé
------------------
<products>
<product>
<name>quan jean</name>
<model>j34878</model>
<price>345.5</price>
</product>
<product>
<name>ao chemise den</name>
<model>chemise11</model>
<price>345.5</price>
</product>
<product>
<name>ao chemise trang</name>
<model>chemise20</model>
<price>345.5</price>
</product>
<product>
<name>ao phong</name>
<model>phong12</model>
<price>345.5</price>
</product>
</products>
 
xml

XML .net
3  bài
02-06-2008 12:38:58
<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">

<xsl:template match="/products">
<Workbook>
<Worksheet>
<xsl:attribute name="ss:Name">Ka</xsl:attribute>
<Table x:FullColumns="1" x:FullRows="1">
<xsl:apply-templates select="product"></xsl:apply-templates>
</Table>
</Worksheet>
</Workbook>
</xsl:template>

<xsl:template match="product">
<Row>
<Cell>
<Data ss:Type="String">
<xsl:value-of select="name"/>
</Data>
</Cell>
<Cell>
<Data ss:Type="String">
<xsl:value-of select="model"/>
</Data>
</Cell>
<Cell>
<Data ss:Type="String">
<xsl:value-of select="price"/>
</Data>
</Cell>
</Row>
</xsl:template>
</xsl:stylesheet>
 
aspnet

Lập trình không biên giới
595  bài
02-06-2008 10:04:49
được bài này chất lượng cao ổn đó
 
aspnet

Lập trình không biên giới
595  bài
02-06-2008 10:11:45
còn để phạng thêm công thức vào thì làm như sau :

-------------
Declares a worksheet with name “Sheet 1”.

<Data ss:Type="String">
<Row ss:Index="3">
<Cell ss:Index="3"…>

<Cell ss:Formula="=R [-3] C+R [-2] C+R [-1] C"></Cell>
-------------------

Còn tại sao nó lại là R [-3] thì chỉ có chúa mới biết
 
aspnet

Lập trình không biên giới
595  bài
02-06-2008 10:39:42
<Cell ss:Formula="=R [-3] C [2] +R [-2] C [2] "></Cell>

chỉ cần cái này là xong. Trong đó r [-2] c [2] là vị trí tương đối của cái ô mình đang dùng làm công thức với các ô bên cạnh nó. rối rắm ghê gớm
 
hung


10  bài
02-06-2008 10:41:00
ổn ổn đó các bác chất lượng rất cao [1] [1] [1] [1] [1] [1]
 
ncn_nguyen


1  bài
30-09-2008 01:45:08
còn để phạng thêm công thức vào thì làm như sau :

-------------
Declares a worksheet with name “Sheet 1”.

<Data ss:Type="String">
<Row ss:Index="3">
<Cell ss:Index="3"…>

<Cell ss:Formula="=R [-3] C+R [-2] C+R [-1] C"></Cell>
-------------------

Còn tại sao nó lại là R [-3] thì chỉ có chúa mới biết


R [-3] C+R [-2] C+R [-1] C = "trên tui 3 dòng + trên tui 2 dòng + trên tui 1 dòng"
R [-3] C [1] +R [-2] C [-2] +R [-1] C = "trên tui 3 dòng, qua phải 1 cột + trên tui 2 dòng, qua trái 2 cột + trên tui 1 dòng"
 
capidon84

abc=xyz
3  bài
03-10-2008 03:18:22
cám ơn nhé, rất hay
---
dai caca
 
ngocminhit06


1  bài
05-10-2010 11:02:22
 

Chủ đề gần đây :

Cùng loại :

 
Tên file Người đăng Ngày Lượt
vspforum.zip
Ma nguon vspforum ngay xua
aspnet 4/18/2023 6:38:37 AM 6
pdfjs.rar
pdfjs 2017 : hiển thị tốt trên iphone 11, 12, 13 không lỗi, bản 2012 sẽ lỗi trên iphone
aspnet 6/21/2022 11:52:48 AM 2
pdfjs2.rar
Xem file pdf bằng viewer.hml cua pdfjs (thư viện chuẩn mozilla) 2012. https://mozilla.github.io/pdf.js/getting_started/#download có thể download bản prebuild tại đây
aspnet 6/21/2022 11:52:04 AM 2
runner.zip
using three.js, orbitcontrol to view an object move random on map. Di chuyển 1 đồ vật ngẫu nhiên trên bản đồ, sử dụng với demo nhân viên di chuyển trong văn phòng. Toàn js download về là chạy
aspnet 12/5/2019 5:55:14 PM 0
gmap.zip
google map + marker
aspnet 7/17/2019 2:25:05 PM 1
vinsmarthomeservice.zip
java post json to api, use AsyncTask, event listener
aspnet 7/9/2019 5:00:10 PM 1
fblogin.zip
Login facebook bang javascript SDK
aspnet 7/9/2019 9:16:37 AM 0
autocomplete-location.zip
autocomplete location geo from google place, html + js
aspnet 7/4/2019 4:37:55 PM 2
WebAPI.zip
api for android access db (v1.0.0)
aspnet 7/4/2019 9:14:17 AM 8
KydientuPdf.zip
Ky dien tu file PDF su dung itextsharp
aspnet 4/9/2019 3:30:37 PM 9
GooglePlusLogin.zip
Login Google Plus account, C#, web asp.net ver2.0. Simple connect google APIs. Send key, get token, get full account info
aspnet 6/1/2018 10:41:12 AM 11
WebApplication1.rar
Sample su dung thuat toan ma hoa tripDES, co khoa bi mat (privateKey)
aspnet 3/30/2018 10:06:35 PM 8
NETMdbToolsTestApp.rar
dotNet MdbTools for Access 2003/2007/2016 without Microsoft Jet Engine, source C#, https://www.codeproject.com/Articles/283626/MsAccess-MdbTools-with-MFC-and-NET
aspnet 3/26/2018 11:43:16 PM 1
Cryptography_MD5_TriDES_src.zip
Thuật toán mã hóa 2 chiều TriDES, gồm Encrypt và Decrypt, aspnet 2.0
aspnet 3/22/2018 11:20:44 AM 3
mvc.rar
sample project MVC on C#
aspnet 3/20/2018 9:25:36 AM 9
EduPortal.rar
Edu portal frame work for VB.NET
aspnet 3/14/2018 12:00:41 AM 13
AutoEntity.rar
Gencode vb.net visual studio 2015. dotnet v2.0
aspnet 3/13/2018 11:59:16 PM 2
GenCode.rar
Gencode XML, XSLT, Info, DAL .. engine enterprise for quick app database
aspnet 2/5/2018 9:37:28 AM 9
DataXml.rar
Read DB from SQL to XML file, Convert string TCVN to Unicode
aspnet 1/29/2018 2:15:45 PM 4
DesktopModules.rar
Module quản lý tin tức, CMS, quản lý nhóm tin trên dotnetnuke 6.x
aspnet 3/7/2013 4:47:49 PM 1714
CODERVN.NET
Công ty cổ phần công nghệ và dịch vụ AWAS
Công ty cổ phần công nghệ và dịch vụ AWAS, cổng thông tin, chính phủ điện tử, phần mềm quản lý điểm, quản lý sinh viên, http://awas.vn, http://awas.com.vn, phần mềm ứng dụng, dịch vụ công trực tuyến, thiết kế website, thiet ke web, thiết kế web, điện lực, phần mềm quản lý đào tạo, cao đẳng, đại học,cổng thông tin tích hợp, cổng thông tin điện tử, webportal, thư viện điện tử, electric library, library online, email, web, quản lý quan hệ khách hàng, CRM, dịch vụ công trực tuyến, phần mềm hành chính một cửa,