There is a table on the Default.aspx page. I need to fill the table with clickable images when I click on the link above the table. Is it possible how to do this?
- Specify how to display the table GridView? You can make a hidden column, and when you click it show. Please spend a little time on the wording of the question in order to get an accurate answer faster. - invincible
- I think it does not matter which table, clickable pictures - just by means of HTML - give them a link with the parameter, and if you need to display them after the click - the same methods ... - Gorets
- If everything is written in pure html, then it is true. But in the case of asp.net it matters, because There the table layout is formed completely on the server. - invincible
|
1 answer
There are several options:
1) when you click on a link, a request is sent to the server and with, for example, c # code, a new gridview is formed, filled with pictures.
2) when you click on a link, the js script that displays in the table, for example, immersing a picture in advance or a previously created but hidden table, is processed.
|