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
Post a Comment