Failed getting error info: Button1_Click is not defined

Let's assume there is aspx code here:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SearchCustomer.aspx.cs" Inherits="WebApplication1.eyeofheaven.SearchCustomer" %>

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="StyleSheets/SearchCustomerStyle.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<title>Search Customer</title>
</head>
<body>
<form id="form1" runat="server">
 <div class="row">
    <div class="twelve columns">
            <!-- Header-->
            <div class="container">
                <nav role="navigation" class="navbar navbar-inverse navbar-fixed-top">
                    <!-- Brand and toggle get grouped for better mobile display -->
                    <div class="navbar-header">
                        <button type="button" data-target="#navbarCollapse" data-toggle="collapse" class="navbar-toggle">
                            <span class="sr-only">Toggle navigation</span>
                            <span class="icon-bar"></span>
                            <span class="icon-bar"></span>
                            <span class="icon-bar"></span>
                        </button>
                    </div>
                    <!-- Collection of nav links, forms, and other content for toggling -->
                    <div id="navbarCollapse" class="collapse navbar-collapse">
                        <ul class="nav navbar-nav">
                            <li><a href="EyeOfHeaven.aspx">Home</a></li>
                            <li class="dropdown">
                                <a data-toggle="dropdown" class="dropdown-toggle active" href="#">Search<b class="caret"></b></a>
                                <ul role="menu" class="dropdown-menu">
                                    <li><a href="SearchCustomer.aspx">Search Form(Customer)</a></li>
                                    <li><a href="SearchVehicle.aspx">Search Form(Vehicle)</a></li>
                                </ul>
                            </li>
                        </ul>
                    </div>
                </nav>
            </div>
    </div>
</div>

<!-- Search form customer-->
<div id="searchcustomer" class="page-header">
    <h3><span class="glyphicon glyphicon-th-large"></span>Search Customer</h3>
</div>
<div class="row">
    <div class="col-md-4"><input type="text" size="20" class="form-control" placeholder="Customer ID"></div>
    <div class="col-md-4">
        <select class="form-control" id="Countries">
                <option>Country</option>
        </select>
    </div>  
    <div class="col-md-4">
        <select class="form-control" id="Regions">
                <option>Regions</option>
        </select>
    </div>
</div>
<div class="row">
    <div class="col-md-4">
        <button type="button" onclick="Button1_Click()" id="searchinfo" class="btn btn-primary"><span class="glyphicon glyphicon-search"></span> Search Info</button>
    </div>
</div>

<!-- Information Table-->
<div class="table-responsive"> 
    <table id="MyTable" class="table table-bordered">
    </table>
</div>
</form>
</body>
</html>

      

And the aspx.cs code behind:

using MSSQLConnector;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1.eyeofheaven
{
    public partial class SearchCustomer : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }
        protected void Button1_Click(object sender, EventArgs e)
        {
            Response.Write("<script>alert('Data Not Found.');</script>");
        }
    }
}

      

I want to display a warning ("No data found.") In the search info button. But I am getting an error in the console "Unprepared reference error: Button1_Click not defined". I have no idea what is causing the code to have the error. Or maybe my warning message is not valid C # code? I called the Button1_Click function in this code:

<button type="button" onclick="Button1_Click()" id="searchinfo" class="btn btn-primary"><span class="glyphicon glyphicon-search"></span> Search Info</button>

      

Please help, I am new to C # language and I am adapting the following syntax and format.

+3


source to share


3 answers


Your button is not defined server side. You need to use a button runat = "server"

for a button and change the event onclick

to onserverclick

like below

<button type="button" id="searchinfo" runat="server" onserverclick="Button1_Click"  class="btn btn-primary"><span class="glyphicon glyphicon-search"></span> Search Info</button>

      



Use Asp.Net asp: Button control instead , like below:

<asp:Button ID="searchinfo" runat="server" onclick="Button1_Click" cssClass="btn btn-primary" Text="Search Info"  />

      

+4


source


You need to do it asp button

like this



<asp:Button onclick="Button1_Click" ID="searchinfo" cssClass="btn btn-primary" Text="Search Info" runat="Server">

      

+3


source


Try the following:

<asp:Button onclick="Button1_Click" ID="searchinfo" 
      cssClass="btn btn-primary" Text="Search Info" runat="Server">

      

those. define the button runat="Server"

. Just adding an attribute runat

will tell ASP.Net to parse the element, along with its attributes and content, as a server control.

+2


source







All Articles