Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Create or replace view NewView
as Select field1||','||field2||','||etc
FROM db2000genuse.course " & _
"WHERE cname LIKE '%" & Request("courselike") & "%' " & _
"ORDER BY cname"
Response.ContentType = "text/plain"
Response.AddHeader "Content-Disposition", "attachment;filename=test.csv"
Response.Write "a,b,c,d,e"
Response.Write "f,g,h,i,j"
Response.Write "k,l,m,n,o"
Response.Write "0,1,2,3,4"
Response.Write "etc,etc,etc,etc,etc"