c# - ASP.NET : Check for click event in page_load -


in c#, how can check see if link button has been clicked in page load method?

i need know if clicked before click event fired.

if( ispostback )  {     // target of post-back, name of control     // issued post-back     string etarget = request.params["__eventtarget"].tostring(); } 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -