Getting values from the html to the controller

Posted by tina on Stack Overflow See other posts from Stack Overflow or by tina
Published on 2011-01-05T15:48:48Z Indexed on 2011/01/05 15:54 UTC
Read the original article Hit count: 240

Filed under:
|
|
|
|

Hi,

I'm trying to access the values a user introduces in a table from my controller.

This table is NOT part of the model, and the view source code is something like:

<table id="tableSeriales" summary="Seriales" class="servicesT" cellspacing="0" style="width: 100%">
    <tr>
        <td class="servHd">Seriales</td>
    </tr>
    <tr id="t0">
        <td class="servBodL">
            <input id="0" type="text" value="1234" onkeypress = "return handleKeyPress(event, this.id);"/>
            <input id="1" type="text" value="578" onkeypress = "return handleKeyPress(event, this.id);"/>
            .
            .
            .
        </td>
    </tr>
</table>

How can I get those values (1234, 578) from the controller?

Receiving a formcollection doesn't work since it does not get the table...

Thank you.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about table