Click here to Skip to main content
15,921,371 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to display data manually in page load using asp.net MVC


Product ID  Product name     Qty  Rate   Amount

  1           Samsung         1    25000   25000
  2            Sony           2    20000   40000
  3            LG             1    15000   15000
  4           Bravia          1    10000   10000



i want to display above data in page load manually using asp.net mvc

What I have tried:

[removed duplicate content]
Posted
Updated 14-Feb-18 1:47am
v2

1 solution

Put this in your view

HTML
<table>
    <tr>
        <th>
            Product ID
        </th>
        <th>
            Product name
        </th>
        <th>
            Qty
        </th>
        <th>
            Rate
        </th>
        <th>
            Amount
        </th>
    </tr>
    <tr>
        <td>
            1
        </td>
        <td>
            Samsung
        </td>
        <td>
            1
        </td>
        <td>
            25000
        </td>
        <td>
            25000
        </td>
    </tr>
    <tr>
        <td>
            2
        </td>
        <td>
            Sony
        </td>
        <td>
            2
        </td>
        <td>
            20000
        </td>
        <td>
            4000
        </td>
    </tr>
    <tr>
        <td>
            3
        </td>
        <td>
            LG
        </td>
        <td>
            1
        </td>
        <td>
            15000
        </td>
        <td>
            15000
        </td>
    </tr>
    <tr>
        <td>
            4
        </td>
        <td>
            Bravia
        </td>
        <td>
            1
        </td>
        <td>
            10000
        </td>
        <td>
            10000
        </td>
    </tr>
</table>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900