Error occured while export data from excel -


i getting error while exporting data excel sheet.

code

response.clear() response.addheader("content-disposition",   "attachment;filename=completiondatesreport.xls") response.charset = "" response.cache.setcacheability(httpcacheability.nocache) response.contenttype = "application/vnd.xls" dim stringwrite stringwriter = new stringwriter() dim htmlwrite htmltextwriter = new htmltextwriter(stringwrite) griddata.rendercontrol(htmlwrite) response.write(stringwrite.tostring()) response.end() 

error

internet explorer cannot download abc.aspx www.xyz.com.
internet explorer not able open internet site.the requested site either unavailable or cannot found.please try again later.

remove line no 4

response.cache.setcacheability(httpcacheability.nocache)

it work.


Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -