点击可调用btnAdd的服务器事件

来源:互联网 发布:cmmi软件成熟度 编辑:程序博客网 时间:2024/04/30 13:52

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Web.Customer.WebForm1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Button ID="btnAdd" runat="server" Text="add" OnClick="btnAdd_Click" />
        <span onclick="javascript:form1.btnAdd.click()">clickTest</span>
    </div>
    </form>
</body>
</html>

 

点击<span></span>可调用btnAdd的服务器事件

原创粉丝点击