Wrox Programmer Forums
|
ASP.NET 1.0 and 1.1 Professional For advanced ASP.NET 1.x coders. Beginning-level questions will be redirected to other forums. NOT for "classic" ASP 3 or the newer ASP.NET 2.0 and 3.5
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 24th, 2007, 01:18 AM
Authorized User
 
Join Date: Jun 2007
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Default Call a Button's click event

Hi,
I want to execute the click event of an asp.net button upon clicking an HTML link.
Please help me solve this problem.
--- Sams

 
Old July 24th, 2007, 01:45 AM
Friend of Wrox
 
Join Date: Aug 2004
Posts: 550
Thanks: 0
Thanked 1 Time in 1 Post
Default

Well, there can be 2 types of click event, server side click and client side click event. To understand better, just paste the below HTML to your aspx page:

<table cellSpacing="0" cellPadding="0" width="100%">
                <tr>
                    <td><A runat=server href="#" onserverclick="btnsubmit_ServerClick">Server Side Click</A></td>
                </tr>
                <tr>
                    <td><input id="btnsubmit" type="submit" value="Server Query" runat="server"></td>
                </tr>
                <tr>
                    <td><A href="#" onclick="document.getElementById('btn').onclick()" >Client Side Click</A></td>
                </tr>
                <tr>
                    <td><input id="btn" type="button" value="Client Query" onclick="alert('Client Test')"></td>
                </tr>
            </table>


And on the server side click of "Server Button", write the following in .cs

protected void btnsubmit_ServerClick(object sender, System.EventArgs e)
        {
            Response.Write("BUtton click");
        }


Regards
Mike

Don't expect too much, too soon.
 
Old July 24th, 2007, 03:09 AM
Authorized User
 
Join Date: Jun 2007
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks a lot for your valuable help.

From
Sams

 
Old July 24th, 2007, 03:32 AM
Friend of Wrox
 
Join Date: Aug 2004
Posts: 550
Thanks: 0
Thanked 1 Time in 1 Post
Default

Glad I could be of help.

Regards
Mike

Don't expect too much, too soon.





Similar Threads
Thread Thread Starter Forum Replies Last Post
call button's click event explicitly sansircar ASP.NET 1.0 and 1.1 Professional 1 January 25th, 2006 01:07 AM
Synchronize a command button's click event Kaustav VB How-To 2 September 20th, 2005 02:25 PM
Click Event dkr72 C# 3 December 8th, 2004 06:23 PM
Mouse Click Event roniestein Access 4 December 11th, 2003 04:53 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.