I guess this is a noob question, but here it comes:
I have a list of products:
<% foreach (var item in Model) { %>
    <tr>
        <td>
            <%= Html.Encode(item.code) %>
        </td>
        <td>
            <%= Html.Encode(String.Format("{0:g}", item.date)) %>
        </td>
        <td>
            <%= Html.Encode(item.category) %>
        </td>
        <td>
            <%= Html.Encode(item.description) %>
        </td>
        <td>
            <%= Html.Encode(String.Format("{0:F}", item.price)) %>
        </td>
     ......
}
And a partial view after all of these (in the same page):
 <div id="productForEdit">
             <fieldset>
                 <legend>Your Selected Product</legend>
                 <% Html.RenderPartial("~/Views/Products/Edit", productObject); %>
             </fieldset>
    </div>
How do I use Ajax.ActionLink, so that when I will click the description of a product, the product will be plugged in the Partial View from the bottom of the page?
I tried some combination with UpdateTargetId="productForEdit", but I had no success.
The purpose is to have a quick edit tool in the page.
