|
|
 |
| 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 p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

July 24th, 2007, 02:18 AM
|
|
Authorized User
|
|
Join Date: Jun 2007
Location: , , .
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|

July 24th, 2007, 02:45 AM
|
|
Friend of Wrox
|
|
Join Date: Aug 2004
Location: , , India.
Posts: 547
Thanks: 0
Thanked 1 Time in 1 Post
|
|
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.
|

July 24th, 2007, 04:09 AM
|
|
Authorized User
|
|
Join Date: Jun 2007
Location: , , .
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Thanks a lot for your valuable help.
From
Sams
|

July 24th, 2007, 04:32 AM
|
|
Friend of Wrox
|
|
Join Date: Aug 2004
Location: , , India.
Posts: 547
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Glad I could be of help.
Regards
Mike
Don't expect too much, too soon.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |