Wish you all are doing fine at the start of a new year
I am a beginner developer. I am developing a website. I have few divs which made up dragable boxes enhanced by jquery portlets. Please see the codes below.(html).
<div class="portlet">
<div class="portlet-header"> Category A </div>
<div class="portlet-content">
</div>
</div>
<div class="portlet">
<div class="portlet-header"> Category B </div>
<div class="portlet-content">
</div>
</div>
I also have a stored procedure from the database developer that return the list of categories. Depending on the user selection, the list of categories can vary. So i have to dynamically create those Boxes. Each categories returned by the SP should replace Category A, Category B, and so on. As i can't know the number of categories returned by the SP i just hard coded those divs. My question is simply how ? How can i achieve this?
I have to be using VB.net in VS 2010. The database is in SQL server 2008. THanks so muchhhhhh and pls have as much detail as you can in your reply as i am a beginner. Thankssssssssssss.