Hi,
How can I pass a HTML element to a controller action. Let's say I have the following element:
<table id="list"></table>
How do I pass this table into the controller action? Also will it be automatically converted to HtmlTable object?
Hi,
How can I pass a HTML element to a controller action. Let's say I have the following element:
<table id="list"></table>
How do I pass this table into the controller action? Also will it be automatically converted to HtmlTable object?
You can only pass that as a string, it won't be converted to HtmlTable object.
You are not suppose to pass any UI elements from controller to view. If you can elaborate more of your scenerio maybe I can help