asp

位置:IT落伍者 >> asp >> 浏览文章

用ASP在线创建Word与Excel文档


发布日期:2020年03月05日
 
用ASP在线创建Word与Excel文档

ASP具备动态输出任一Office应用程序文件格式的功能在开始编写代码之前我们首先需要做的就是设置正确的文件类型因为浏览器需要知道如何处理文件第二步是编辑文件名称我们可以使用HTML和CSS来创建Word文档或Excel文档的样式

下面这段例子代码可用于在线创建Word文档

以下是引用片段

<%

ResponseContentType = application/msword

ResponseAddHeader ContentDisposition attachment;filename=NAMEdoc???

responseWrite(Dotnetindexcom : <a href=visit/>http://wwwdotnetindexcom>Visit Site</a><br> & vbnewline)

responseWrite(<h>We can use HTML codes for word documents</h>)

responseWrite (<div style=padding:px; font:px arial>CSS can be used tooo</span>)

%>

下面这段例子代码可用于在线创建Excel文档

以下是引用片段

BORDERRIGHT: #cccccc px solid; PADDINGRIGHT: px; BORDERTOP: #cccccc px solid; PADDINGLEFT: px; BACKGROUND: #fff; PADDINGBOTTOM: px; MARGIN: px px; BORDERLEFT: #cccccc px solid; PADDINGTOP: px; BORDERBOTTOM: #cccccc px solid><%

ResponseAddHeader ContentDisposition attachment;filename=membersxls

ResponseContentType = application/vndmsexcel

responsewrite <table width=% border= >

responsewrite <tr>

responsewrite <th width=%><b>Name</b></th>

responsewrite <th width=%><b>Username</b></th>

responsewrite <th width=%><b>Password</b></th>

responsewrite </tr>

responsewrite <tr>

responsewrite <td width=%>Scud Block</td>

responsewrite <td width=%>scud@gazatemcom</td>

responsewrite <td width=%>mypassword</td>

responsewrite </tr>

responsewrite </table>

%>

上一篇:关于asp静态分页的反向生成方式

下一篇:在aspx页面中事件的执行顺序[2]