Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,
I creating webusercontrol. In my .ascx page
How to call the prerender function for particular control in asp.net

for ex:
C#
private void Button1_PreRender(object sender, EventArgs e)
{
    //Button has OnClientClick property so we can assign to it directly
    Button btn1 = (Button)sender;
    btn1.OnClientClick = this.OnClientClick;
    
}


In aspx page i give following
ASP.NET
<asp:Button ID="Button1" runat="server" Text="Button" UseSubmitBehavior="false" OnPreRender="Button1_PreRender" />


But it show the error Button1_PreRender is not defined.
Posted
v2
Comments
Andy Lanng 8-May-13 8:18am    
Please post the error message
thanks

Oh - PreRender will not be send from the control so the method shud only have the Event Args, no Sender
UshaCbe 8-May-13 8:23am    
So prerender is not have sender
UshaCbe 8-May-13 8:24am    
But how we got the particular is in prerender event

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