| Author: S.Raja Ramana Rao 01 May 2007 | Member Level: Bronze | Rating:  Points: 2 |
//Server side
private void Page_Load(object sender, System.EventArgs e) { string jScript; jScript="<script>function JavScriptFn(){alert" + " ('Client Function in javascript is call')}</script>"; }
//HTML side <PRE lang=html nd="28">< A onclick="JavScriptFn()" > < asp:Label id="Label1" runat="server" Width="281px" ForeColor="#8080FF">Click to call Javascript function. </asp:Label> >/A >
|