alternative in html

  • Thread starter Thread starter Reb
  • Start date Start date
R

Reb

Hi,

Can anyone tell me, how can i replace this in HTML?
<asp:LinkButton id="LinkButton7" runat="server" Font-
Bold="True" Font-Size="10" ForeColor="Teal" Font-
Names="Arial">Load Opened Minutes / Create from
Agenda</asp:LinkButton>.
On click on this, i need to write few lines for this event
also.

I need this in html because i am using frames and so i
need to use "target" to go to a page on clicking on this
link.

any other alternative?

Thanks
Reb
 
Maybe something like ...

<a href id="LinkButton7" runat="server" style="FONT-WEIGHT: bold; FONT-
SIZE: 10pt; COLOR: teal; FONT-FAMILY: Arial" onclick="MyScript">Load Opened
Minutes / Create from Agenda</a>
 
I wanted to write an event for the click in my code
behind? If i use hyperlink, i could not perform onclick
event.
 
Back
Top