Click here to Skip to main content
15,912,977 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi,

When Iam using EnableEventValidation="false" in
ASP.NET
<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" EnableEventValidation="false" AutoEventWireup="true" CodeBehind="EditInvoice.aspx.cs" Inherits="Radar5C.POInvoice.EditInvoice" %>



Button Click not firing.

Suggest me in Solving this issue.
Posted
Updated 16-Nov-15 20:33pm
v2

Use following in c#
C#
protected void Page_PreRender(object sender, EventArgs e)
    {
   
    }
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900