Hi all, I have a gridview which always gets updated with a timer.
Inside the gridview i use a hyperlink to show a pop up. The problem is, when I click the hyperlink, the pop up turns to be updated as well.
I am thinking now how to stop the timer together with showing the pop up when i click the hyperlink inside my gridview?
<Columns>
<asp:TemplateField>
<HeaderStyle CssClass=showAlarm BackColor="Gray"/>
<ItemStyle CssClass=showAlarm />
<HeaderTemplate>Description</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="Hyperlink1" runat="server" Text='<%# Bind("Description") %>' > // I would like to stop the TIMER and show the pop up when i click here!!
</asp:HyperLink>
<asp:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="Hyperlink1" PopupControlID="panPopUp" BackgroundCssClass="modalBackground">
</asp:ModalPopupExtender>
</ItemTemplate>
</asp:TemplateField>
Bookmarks