Hi all,
I am a little confussed as to why I cannot pass the values to this tag. it's an asp:button and I just need to populate some information from the code behind into the tag below.
OnClientClick
='inviteguests(<%# Eval("MeetingID")%>, <%= CPin %>, 200, 200, 500, 600);'Thanks in advance.
Lee
Lee BlakePosted Feb 19, 2008, 6:13 AM
Hi all,
I found the solution:
set the tag as
OnClientClick='<%# Eval("Link") %>'
and in the codebehind set:
Link = "inviteguests(" + MeetingID + ", " + CPin + ", 200, 200, 500, 600)";
and it works.