Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to make dynamic control placeholder, label, and images on searchpage.aspx (page_load event).

Dynamic controls are making according to searching records. (Means if 5 records are there, then 5 label and 5 images are created in placeholder).

Retrieve all information from database (table) and images are from solution explorer
(foldername:-images).

I search record by firstname and lastname.

Please help me friends!
Posted
Updated 14-Mar-12 14:11pm
v3

I think you should use repeater control. it will repeat only for the available records coming from the database. Have your repeater to show a label and image. for each record a label and image will be displayed.
 
Share this answer
 
Hi Gaurav,

We can do this many ways. few are as follows.

1.There is a concept in jquery to achieve this in client script, called 'jquery templates'.

refer this link:
http://api.jquery.com/jquery.tmpl/[^]

If you know ajax its pretty much simple to achieve this task using jquery template.


2.otherwise you have to add html literal control from server script.

3.use gridview template or repeater control.

First one is most preferable by most of the developers for performance.
 
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