<html><head> <title>(Type a title for your page here)</title> <script type="text/javascript"> function show_alert() { var msg = "Welcome to plus2net.com"; alert(msg); } </script> </head> <body > <input type=button value='Click here to display alert message' OnClick="show_alert()"> </body></html>
Life is a Race Thanks & Regards By Sabari Mahesh P M
button click function() me.textbox.text = "Hello" end sub
____________ www.flickr.com/photos/psdesigner/
------------------------------------------------ Learn throughout life
<asp:textbox id="TxtNew" runat="server" visible=false></asp:textbox>
button click function() me.txtnew.text = "your message here" me.txtnew.visible=true end sub
--------------------------------------- Live the life you've dreamed Regards MADHU
<asp:textbox id="txtt" style="display:none;" runat="server"></asp:textbox>
<asp:Button ID="buttonClick" runat="server" style="display:none" OnClientClick="display('txtt')"> </asp:TableCell>
<Script> Function(txtt) { var lbl = document.getElementById('txtt'); lbl.style.display="block"; } </Script>
Login to post response