Click here to Skip to main content
16,019,199 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Respected Sir,
i am taking a Datalist control on a page and in that i place one image_button.In that image_button the image will be display taking from SQL database.
And that images are different for every time..So how can i open a new page which related to that image when click on image_button.
Please give me some suggetion.

Thanks in Advanced..
Posted
Comments
[no name] 9-Nov-12 9:44am    
Do you have to use an image button? Can you use an html image? if thats the case you can do an onClietClick.

1 solution

The ImageButton control has a PostBackUrl property.
Assign/bind this to the url from the data base record for the image.:

ASP.NET
<asp:imagebutton runat="server" id="selectImageButton" xmlns:asp="#unknown">
  PostBackUrl='<%# Eval("url")%>' />
</asp:imagebutton>


Hope this helps.
 
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