export excel taking long time from ASP pages?
Posted
by
ricky
on Stack Overflow
See other posts from Stack Overflow
or by ricky
Published on 2013-10-22T09:50:20Z
Indexed on
2013/10/22
9:53 UTC
Read the original article
Hit count: 224
i am using following code for export to excel from .ASP page?
GMID = Request.QueryString ("GMID")
Response.Buffer = False
Response.ContentType = "application/vnd.ms-excel"
DIR_YR = Request.QueryString ("DIR_YR")
CD = Request.QueryString("CD")
YEAR = Request.QueryString("IND")
Problem that I am facing is that When records are around 2,000 or more{ export to excel ask for open option .When i click on that option only Download in progress... shown but actually no excel pop up will open .How can I fixed this bug because for 700-800 rows its working Fine. I am not looking for whole change codes because there is a problem with only One Sale rep who is having more than 2000 rows.I am looking for one or two rows changes.
© Stack Overflow or respective owner