B
Bogdan
Hi,
A button in aspx is as follows:
<asp:Button ID="FinishButton" runat="server" CommandName="MoveComplete"
Text="Finish"
OnClientClick="scheduleDisable('???');" />
Is there a way to declaratively replace ??? with the button's client ID?
I'm looking for something like '<% FinishButton.ClientID %>' which obviously
is wrong.
I could easily do it programmatically but I need to use markup in this case.
Thanks,
Bogdan
A button in aspx is as follows:
<asp:Button ID="FinishButton" runat="server" CommandName="MoveComplete"
Text="Finish"
OnClientClick="scheduleDisable('???');" />
Is there a way to declaratively replace ??? with the button's client ID?
I'm looking for something like '<% FinishButton.ClientID %>' which obviously
is wrong.
I could easily do it programmatically but I need to use markup in this case.
Thanks,
Bogdan