Help on Mouse over feature/Click event

  • Thread starter Thread starter Stephen
  • Start date Start date
S

Stephen

Hi,

I have a datagrid with a column which displays image after unstreaming data
from the database. I want to have a mouse over feature or a click feature
that will redirect to another page and display the details of this image and
other features. How can I do this?

this is a part of the HTML Code:
<asp:TemplateColumn HeaderText="Image">
<ItemTemplate>
<asp:Image ImageUrl='<%#
FormatURL(DataBinder.Eval(Container.DataItem, "InventoryID")) %>'
Runat=server ID="Image1"/>
</ItemTemplate>
</asp:TemplateColumn>

Please advice,
Stephen.
 
Give it a CssClass and do it in there, that's all clientside eventing, not
serverside and therefore not really asp.net
 
Back
Top