Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I return the HTML from MVC controller to a div in my view

I'm trying to return the generated HTML string to the view to dynamically generate a HTML table with results. I'm not able to get the returned HTML string any suggestions and help is greatly appreciated.

Here is my Controller code

    public ActionResult ValidateTrams()
    {
        string html = "";
        if (Request.Files.Count == 0 || Request.Files[0].ContentLength == 0)
        {
        }

        else
        {
            html = ProcessTextFile(Request.Files[0].InputStream);
        }

        return View(html);
    }

I'm trying to grab this returned result in jquery like this

$('#tramsView').live('click', function () {

$.ajax({
    url: '/Booking/ValidateTrams',
    type: 'POST',
    dataType: 'jsonp',
    success: function (data) {
        alert(data);
        $('#TramsViewFrame').html(data);
    },
    error: function (jqxhr, textStatus, errorThrown) {
        $(window).hideWaitScreen();
        if (confirm(errorThrown)) { window.location.reload(); }
    }
});

});

Finally Below is the CSHTML for the form. Here I'm reading a file from a form with a button type submit

<form action="#" method="post" enctype="multipart/form-data" class="forms" name="form"
            id="frmvalidate">
            <table>
                <tr>
                    <td>
                        <input type='file' name='trams' id='ValidatetramsFile' />
                    </td>
                </tr>
                <tr>
                    <td>
                        <br />
                        <input name="cbDisplayUmatched" id="cbDisplayUmatched" type="checkbox" value="" checked="true" />
                        <label style="text-decoration: none; outline: none; font-size: 1.1em; padding: 3px 0 0px 0;">
                            Display rows that were <strong>NOT</strong> parsed</label>
                    </td>
                </tr>
                <tr>
                    <td>
                        <br />
                        <div class="buttons">
                            <button type="submit" value="VIEW" class="ui-state-default ui-corner-all" id="tramsView">VIEW</button>
                        </div>
                    </td>
                </tr>
            </table>
            </form>

Thanks for your time and really appreciate your help. Kind Regards!!!

like image 552
Tectribes Avatar asked Apr 29 '12 05:04

Tectribes


People also ask

How do I pass HTML content from controller view?

You can use ViewBag. YourField or ViewData["YourStringName"] and for retreiving it in your View. Just place it where you want preceded by @ like this @ViewBag. YourField or @ViewData["YourStringName"] .

How do I return an HTML controller?

Use ControllerBase. The first string represents the content of the HTML while the last is the content-type which for HTML is "text/html" . Since our controller derives from ControllerBase , we simply call base. Content() and pass the required parameter to return the desired HTML.

Does the controller return a view?

A controller action might return a view. However, a controller action might perform some other type of action such as redirecting you to another controller action.


2 Answers

you can return HTML from action like this,

return Content(html, "text/xml");
like image 52
Jayantha Lal Sirisena Avatar answered Sep 19 '22 11:09

Jayantha Lal Sirisena


It sounds as if your form is still submitting a normal postback, so any asynchronous calls that you're doing are being lost.

Try preventing the default form submission taking place with the following:

$('#tramsView').live('click', function (evt) {

    evt.preventDefault();

    // ... rest of your code 

});

Incidentally, in this case, if all you're doing is updating the html on your #TramsViewFrame, you could just use the slightly simpler $.load() method:

$('#tramsView').live('click', function (evt) {
    evt.preventDefault();
    $('#TramsViewFrame').load('/Booking/ValidateTrams');
});
like image 36
ngm Avatar answered Sep 21 '22 11:09

ngm