You need to Register for free and Login to post a message in the forum.

Forum

Subject: asp.net ajax error exporting datagrid data to excel
Prev Next
You are not authorized to post a reply.

Author Messages
sandeepmovva
Nuke Newbie
Nuke Newbie
Posts:1

23 Apr 2008 10:12 AM  
 

Hi All,

         I have a module which has different panels in a control and a tabbed interface.Based on this selection panels are shown.I used "Supports partial Rendering" for this control.Everything worked fine with the ajax functionality i mean when i click on tabs the corresponding panels are displayed without refreshing.But i added a link in the panels called "export to excel" and wrote its functionality.I get an excel file if i uncheck the option "Supports partial Rendering".But when i check that option since i want the panels to be shown without page refresh i have checked the partial rendering functionality.When this is checked i get the following error.The following is the sample code i have written for the link.

    Protected Sub competencygridexport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles competencygridexport.Click

            Response.Clear()

            Response.AddHeader("content-disposition", "attachment;filename=myexcelfile.xls")
            Response.Charset = ""
            Response.Cache.SetCacheability(HttpCacheability.Public)
            Response.ContentType = "application /vnd.xls"


            Dim StringWriter As New StringWriter
            Dim htmlWrite As New HtmlTextWriter(StringWriter)
            htmlWrite.RenderBeginTag(System.Web.UI.HtmlTextWriterTag.Html)
            lstCompetencies.HeaderStyle.Font.Bold = True
            lstCompetencies.GridLines = GridLines.Both

            lstCompetencies.Columns(2).Visible = False
            lstCompetencies.Columns(3).Visible = False
            lstCompetencies.Columns(4).Visible = False

            lstCompetencies.AllowPaging = False
            lstCompetencies.AllowSorting = False

            'Render(htmlWrite)

            lstCompetencies.RenderControl(htmlWrite)
            htmlWrite.RenderEndTag()
            Response.Write(StringWriter)
            Response.End()
        End Sub

The error i get is a javascript popup which contains the following text in it.All the function executes fine and finally i get the javascriptpop up so i can say there is a pbm with this ajax stuff and not with my code since i am able to export it when the ajax functionality is disabled i mean "Supports partial rendering" is turned off.I think this is due to the line response.write in my code.What might be the problem and how to solve it.please help.

Sys.WebForms.PageRequestManagerParseErrorException: The message recieved from the server could not be parsed.Common causes for this error are when the response is modified by calls to Response.Write(),response filters,Http Modules, or server trace is enabled..so on.

Why is this occuring.please help.I really need the ajax functionality to be working but with this excel option i cannot.Its urgent.Thanks in advance.

Regards,

.netuser

You are not authorized to post a reply.
Forums > DotNetNuke® > Modules - What's needed? > asp.net ajax error exporting datagrid data to excel



ActiveForums 3.7

Latest Forum Posts

Dynamic Registration - Viewing Data Fields by billkidwell
A DNN "guru" set up and "manages" the dynamic registration module for our web site. The registration...
RE: Getting rid of a 1px space in IE by mtarby
Thanks Lee - that did it. In case anyone runs into something similar, the gap in IE is caused by us...
Member log in by HUGHD37IUOE
When our members log in, they are returned to the page they started from. Is there any way to send t...
Grid View loosing CSS by pczurak
I've created a module and this module has a GridView with AutoFormat, but the problem is when I clic...
FREE SEO Firefox tool by eureka
HelloI have found a great SEO tool for use with Firefox, which you can turn on or off. It shows page...
RE: To remove login link by Albatroz2000
Joe, on my end the Register button doesnt show up in 4.8.4 Login Module but then the text link is th...
RE: Hiding "Register" link from Users by Albatroz2000
Thanks Lee. I did that and the Register button is not there in the Login module. However the text l...
RE: FCKEditor and dynamic css by DavidWSnow
Too bad they didn't make it both easier for them and for us to upgrade
Video Problem by icdlbake
Hi Everyone,I have the following problem with DNN version 7.04 installed on Windows 2003 Server.In I...
RE: Embed a Module on a Skin by jncraig
Take a look at the simple module code I posted here.  The code in the ascx file shows how I embedded...
Free Website Grader SEO Tool by eureka
HelloI came across this useful Free SEO tool, it is a Website Grader that measures the marketing eff...
RE: Subject: DNN menu not showing on IE 7 after changing portal alias by jncraig
I've no ideas. If you want to send me the two URLs to your site, so that I can see what you are see...
RE: To remove login link by jncraig
You can edit your skin file to remove it. You can also remove the Register link. Removing the lin...
RE: OK, I Upgraded, But Where Did CAPTCHA Go? by mgordon
I heard that as well.  Maybe even a 4.8.6...time will tell.Thanks Joe...
RE: OK, I Upgraded, But Where Did CAPTCHA Go? by jncraig
I'm glad that you're checking my work! Yes, that's the answer. I'm also glad that the upgrade to...
To remove login link by ambatisreedhar
Hi,I dont want users to login using login link.How to remove that login link from home page in DNN w...
RE: Subject: DNN menu not showing on IE 7 after changing portal alias by ambatisreedhar
hi,I was not able to see the Menus .
RE: How to create a Search Page? by leesykes
If you go to admin menu / pagesHere you will see a page named Search Results, here you can edit the ...
RE: FCKEditor and dynamic css by leesykes
I hope that your tutorial covers how to upgrade your version of the FCKedit to be the same as provid...
RE: Getting rid of a 1px space in IE by leesykes
When troubleshooting I tend to strip everything out of the CSS and then re-introduce it one at a tim...
AppTheory
RSS Feeds