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

  • SEARCH
  • Home
  • 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 8543195
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T12:14:42+00:00 2026-06-11T12:14:42+00:00

I’m adding CSV export to a service implemented with ASP.NET Web API. Currently I

  • 0

I’m adding CSV export to a service implemented with ASP.NET Web API.

Currently I have a view model (containing details of results filtering), which is sent to a Web API controller via a ajax POST request. The JSON response is then rendered on UI. This works just fine.

Now I want to post the same view model to another controller, let us name it ExportController. Then I need to download the file to the user.

My idea:

  1. Post the view model to the service, store it somewhere in persistent storage (DB or in-memory cache, does not matter) and return an export token to a user. (By export token I mean a piece of information used to identify this particular export)

  2. Then execute a GET request from an iframe with that token in URL
    and get the file as the response to this request.

What I have by now, on UI:

var exportUrl = "URL to ExportController"
$.ajax(exportUrl, {
   type: 'POST',
   contentType: 'application/json',
   data: postData
})
.success(function(data) {
    // this should download the file
    $('#export').attr('src', exportUrl + '&exportToken=' + data);
});

Here ‘#export’ is the iframe element used to download the file.

And here is a raw sketch of export backend:

public class ExportController : ApiController
{
    ...

    // GET /api/Export
    public string Get(string exportToken)
    {
        // get filters from DB
        var filters = ExportArgumentProvider.GetFilters(exportToken);

        // get data
        var result = DataSource.GetData(filters);

        return result;
    }

    // POST /api/Export
    public string Post(FilterInput filters)
    {
        var guid = Guid.NewGuid();

        // save filters to DB
        ExportArgumentProvider.AddFilter(guid, filters);

        return guid.ToString();
    }
}

This pseudo-code obviously does not work, please ignore the return type of Get method.

So, questions:

  1. Is there easier way to make this export (without storing filter state in DB).
  2. Is this approach sane (state stored in DB etc.), or such tasks should be done in another way?
  3. Is ASP.NET Web API a good fit for such tasks or I should resort to usual ASP.NET controllers for export?

UPDATE: data posted to the server may exceed URL lenght limits, so passing it via a GET request is not really an option.

  • 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-06-11T12:14:43+00:00Added an answer on June 11, 2026 at 12:14 pm

    For this project I gave up creating clean and RESTful backend and converted ExportController into a usual MVC controller. Then I was able to change this line in Post method

    ExportArgumentProvider.AddFilter(guid, filters);
    

    into

    Session[exportId] = filters;
    

    and do the same thing with the Get method.

    I still think that approach with storing filters in DB is much better, but

    1. I don’t really need REST API here.
    2. It introduces too much overhead into the code, much more than I would like to add ‘just for the sake of purity of the API’.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I have a view passing on information from a database: def serve_article(request, id): served_article
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a jquery bug and I've been looking for hours now, I can't
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.

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.