Cela aide à trouver le nom du contrôle qui a causé la publication dans le chargement de page. Cela m'a aidé. J'espère que cela aidera quelqu'un d'autre aussi
<asp:Button ID="Button1" runat="server" Text="Button"
OnClientClick = "SetSource(this.id)" />
<asp:ImageButton ID="ImageButton1" runat="server"
OnClientClick = "SetSource(this.id)" />
<script type = "text/javascript">
function SetSource(SourceID)
{
var hidSourceID =
document.getElementById("<%=hidSourceID.ClientID%>");
hidSourceID.value = SourceID;
}
</script>
on code behind you can get the ID of the function using :
if (IsPostBack)
{
string CtrlID = string.Empty;
if (Request.Form[hidSourceID.UniqueID] != null &&
Request.Form[hidSourceID.UniqueID] != string.Empty)
{
CtrlID = Request.Form[hidSourceID.UniqueID];
}
}