Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6060089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:47:08+00:00 2026-05-23T08:47:08+00:00

I have an MVC 3 view for rendering reports from SQL Server Reporting Services.

  • 0

I have an MVC 3 view for rendering reports from SQL Server Reporting Services. There’s a form at the top where I capture parameters for the report and on submission, my controller action is dutifully called and my report is rendered into a < div >.

I’m now adding an Export to Excel function. I want the same parameters from the form, but this time, I want a full Postback, not an Ajax call to the controller, so that the user is offered the opportunity to download the report. Otherwise, my report gets rendered as binary content on the existing view.

I’m thinking that I want to be able to switch the behaviour of my form between Ajax and normal Postback, depending on which ‘submit’ button I click.

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T08:47:08+00:00Added an answer on May 23, 2026 at 8:47 am
    @using (Html.BeginForm("Export", "Report"))
    {
        ... some form fields
    
        @Html.ActionLink("Render report", "Render", "Report", null, new { id = "generateReport" })
        <input type="submit" value="Export to Excel">
    }
    
    <div id="report"></div>
    

    and then AJAXify the Render report link in a separate js file:

    $(function() {
        $('#generateReport').click(function() {
            var form = $(this).closest('form');
            $.post(this.href, form.serialize(), function(result) {
                $('#report').html(result);
            });
            return false;
        });
    });
    

    and in your ReportController you would have both Export and Render actions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an MVC view with a form built with the Ajax.BeginForm() helper method,
I am working on rendering a dynamic form in an ASP.NET MVC view that
I have an MVC application view that is generating quite a large HTML table
I have an ASP MVC view where have the following statement #if DEBUG //section
I have a strongly-typed MVC View Control which is responsible for the UI where
I have an ASP.NET MVC view which contains checkboxes for user-defined categories. <td><% foreach
I have an ASP.NET MVC view on which I've placed jQuery tabs. I'm loading
I have this sort of format asp.net MVC View -> Service Layer -> Repository.
i have a strongly typed asp.net-mvc view and the Model has a . Links
I have a drop-down list hardcoded in an MVC View User Control page and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.