(C#) ASP.NET Write/Export to CSV file |
(C#) ASP.NET Write/Export to CSV files การเขียนข้อความลงใน CSV สามารถทำได้ง่ายและสะดวกเหมือนการเขียนไฟล์ลง Text Files เพียงแต่คั้นข้อความแต่ล่ะ Column ด้วยเครื่องหมาย Comma (,)
Language Code : VB.NET || C#
Framework : 1,2,3,4
AspNetWriteCsv.aspx
<%@ Import Namespace="System.IO"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(object sender,EventArgs e)
{
StreamWriter StrWer;
StrWer = new StreamWriter(Server.MapPath("csv/") + "customer.csv", true);
//*** Write Record ***//
StrWer.WriteLine("C005,Weerachai Nukitram,[email protected],TH,2000000,100000");
StrWer.WriteLine("C006,Surachai Sirisart,[email protected],TH,1000000,200000");
//*** Write Record (End) ***//
StrWer.Close();
this.lblText.Text = "CSV Writed. <a href=csv/customer.csv>Click here</a>";
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - CSV</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Label id="lblText" runat="server"></asp:Label>
</form>
</body>
</html>
Screenshot
|