Users Pricing

forum

Home Forums Html with json mvc – MindStick

Html with json mvc

Anonymous User 2321 29 Oct 2014

I need to pass html as parameter using json asp.net mvc2

I am trying to do like this:

$.ajax({
        type: "POST",
        dataType: "json",
        contentType: 'application/json; charset=utf-8',
        url: "/DefaultView/GeneratePDF",
        data: { "pdf": JSON.parse($("#displayContainer").html()) },
        success: function (data) {
            //nothing here
        }
    });

but it throws the "Uncaught SyntaxError: Unexpected token < " error.

using stringify() I am getting null here:

[HttpPost]
    [ValidateInput(false)]
    public virtual ActionResult GeneratePDF(string pdf)
    {
        pdf <---
    }


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md